Skip to content

Commit

Permalink
Bugfix: coordinates should be floats, shouldn't they?
Browse files Browse the repository at this point in the history
TheJokersThief committed Dec 18, 2020
1 parent a1964ad commit 06ca113
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daft_scraper/listing.py
Original file line number Diff line number Diff line change
@@ -58,7 +58,7 @@ class Meta:
unknown = INCLUDE

point_type = fields.Str(data_key="type")
coordinates = fields.List(fields.Int())
coordinates = fields.List(fields.Float())


class ListingPRS(Schema):

0 comments on commit 06ca113

Please sign in to comment.