diff --git a/cloudcheck/providers/__init__.py b/cloudcheck/providers/__init__.py index a1eef68..cc3c5c8 100644 --- a/cloudcheck/providers/__init__.py +++ b/cloudcheck/providers/__init__.py @@ -43,7 +43,7 @@ def load_from_json(self): with open(self.json_path) as f: try: j = json.load(f) - for k, v in list(j.items()): + for k in list(j): j[k.lower()] = j.pop(k) except Exception as e: log.warning(f"Failed to parsed JSON at {self.json_path}: {e}")