Skip to content

Commit a9ad037

Browse files
authored
Merge pull request #9 from JLLeitschuh/pixeebot/drip-2024-02-01-pixee-python/literal-or-new-object-identity
2 parents acbcb72 + e20fe34 commit a9ad037

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jhipster_security_fix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ async def do_retry(exception: Optional[Exception]) -> str:
5757
data=file_contents,
5858
timeout=self.timeout
5959
)
60-
if response.status_code is 200:
60+
if response.status_code == 200:
6161
return response.text
6262
else:
6363
return await do_retry(None)

0 commit comments

Comments
 (0)