ruff format

This commit is contained in:
Kadir 2024-03-25 20:48:48 +00:00
parent 37e3e8ad6f
commit d777558b34
17 changed files with 411 additions and 368 deletions

View file

@ -12,10 +12,10 @@ for i in range(1, 10000):
d = listing_query(i, 3, 3, 15, 0, 800000, max_days_since_added=1)
except:
break
for property in d['properties']:
identifier = property['identifier']
for property in d["properties"]:
identifier = property["identifier"]
listing = Listing(identifier)
with open(listing.path_listing_json(), 'w') as f:
with open(listing.path_listing_json(), "w") as f:
json.dump(property, f)