From f2f41da03acd7d64443ddceef4bb4f2c0e4406ce Mon Sep 17 00:00:00 2001 From: CCP Zoetrope Date: Wed, 25 Jul 2018 14:20:01 +0000 Subject: [PATCH] Fix pylint error --- eve_glue/location_type.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"