Skip to content

Commit 99aebb7

Browse files
committed
format with python black
1 parent efcb807 commit 99aebb7

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

flickr/photos.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@
1616

1717
def main():
1818
flickr = flickrapi.FlickrAPI(
19-
os.getenv("FLICKR_API_KEY"), os.getenv("FLICKR_API_SECRET"), format="json"
19+
os.getenv("FLICKR_API_KEY"),
20+
os.getenv("FLICKR_API_SECRET"),
21+
format="json",
2022
)
2123

2224
# use search method to pull general photo info under each cc license data

flickr/photos_detail.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,9 @@ def main():
153153
hs_csv_path = os.path.join(CWD, "hs.csv")
154154

155155
flickr = flickrapi.FlickrAPI(
156-
os.getenv("FLICKR_API_KEY"), os.getenv("FLICKR_API_SECRET"), format="json"
156+
os.getenv("FLICKR_API_KEY"),
157+
os.getenv("FLICKR_API_SECRET"),
158+
format="json",
157159
)
158160
# below is the cc licenses list
159161
license_list = [1, 2, 3, 4, 5, 6, 9, 10]

0 commit comments

Comments
 (0)