diff --git a/eve_glue/location_type.py b/eve_glue/location_type.py index ecfb016..3aeb4bb 100644 --- a/eve_glue/location_type.py +++ b/eve_glue/location_type.py @@ -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"