Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTechromancer committed Feb 6, 2024
1 parent 0c896e2 commit 553cb8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bbot/modules/postman.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ async def search_workspace(self, id):
try:
json = r.json()
if not isinstance(json, dict):
raise ValueError(f"Got unexpected value for JSON: {json}"
raise ValueError(f"Got unexpected value for JSON: {json}")
except Exception as e:
self.warning(f"Failed to decode JSON for {r.url} (HTTP status: {status_code}): {e}")
return [], []
Expand Down

0 comments on commit 553cb8b

Please sign in to comment.