Skip to content

Commit f7e5cbb

Browse files
eumirophibos
authored andcommitted
Remove redundant parentheses
1 parent 25af9ff commit f7e5cbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

overpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ def get_center_from_json(cls, data):
629629
raise ValueError("Unable to get lat or lon of way center.")
630630
center_lat = Decimal(center_lat)
631631
center_lon = Decimal(center_lon)
632-
return (center_lat, center_lon)
632+
return center_lat, center_lon
633633

634634
@classmethod
635635
def get_center_from_xml_dom(cls, sub_child):

0 commit comments

Comments
 (0)