Skip to content

Commit

Permalink
Fix pylint error
Browse files Browse the repository at this point in the history
  • Loading branch information
ccp-zoetrope committed Jul 25, 2018
1 parent 9c57078 commit f2f41da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eve_glue/location_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ def resolve_location_type_enum(location_type_id):

if location_type_id <= 10000:
return "solar_system"
if (location_type_id >= 60000000) and (location_type_id < 64000000):
if 60000000 <= location_type_id < 64000000:
return "station"
return "other"

0 comments on commit f2f41da

Please sign in to comment.