Skip to content

Commit

Permalink
Merge pull request #9 from JLLeitschuh/pixeebot/drip-2024-02-01-pixee…
Browse files Browse the repository at this point in the history
…-python/literal-or-new-object-identity
  • Loading branch information
JLLeitschuh authored Feb 1, 2024
2 parents acbcb72 + e20fe34 commit a9ad037
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jhipster_security_fix.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ async def do_retry(exception: Optional[Exception]) -> str:
data=file_contents,
timeout=self.timeout
)
if response.status_code is 200:
if response.status_code == 200:
return response.text
else:
return await do_retry(None)
Expand Down

0 comments on commit a9ad037

Please sign in to comment.