Skip to content

Commit

Permalink
chore: ignore bandit's false positive error
Browse files Browse the repository at this point in the history
Reported error:
> Issue: [B105:hardcoded_password_string] Possible hardcoded password: 'sell_outcome_token_done'
  • Loading branch information
Adamantios committed Dec 6, 2024
1 parent 6f47bf1 commit b65ba87
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class Event(Enum):
BET_PLACEMENT_NO_SELL_DONE = "bet_placement_done_no_sell"
BET_PLACEMENT_SELL_DONE = "bet_placement_done_sell"
REDEEMING_DONE = "redeeming_done"
SELL_OUTCOME_TOKEN_DONE = "sell_outcome_token_done"
SELL_OUTCOME_TOKEN_DONE = "sell_outcome_token_done" # nosec
STAKING_DONE = "staking_done"
SUBSCRIPTION_DONE = "subscription_done"
ROUND_TIMEOUT = "round_timeout"
Expand Down

0 comments on commit b65ba87

Please sign in to comment.