Skip to content

Commit

Permalink
Fix == True ruff check (#4663)
Browse files Browse the repository at this point in the history
  • Loading branch information
wssheldon authored Apr 27, 2024
1 parent 012eee4 commit 0ad6dd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dispatch/plugins/dispatch_slack/middleware.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def is_bot(request: BoltRequest) -> bool:

if authorizations:
for auth in authorizations:
if auth.get("is_bot") == True:
if auth.get("is_bot"):
return True

auth_result = request.context.authorize_result
Expand Down

0 comments on commit 0ad6dd0

Please sign in to comment.