Skip to content

Commit

Permalink
case troubleshooting
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTechromancer committed Nov 3, 2023
1 parent 74a9b42 commit daa23b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloudcheck/providers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
Expand Down

0 comments on commit daa23b1

Please sign in to comment.