Skip to content

Commit

Permalink
fix!: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rostyq committed Mar 8, 2024
1 parent 3fe4302 commit 2d564c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions liqpy/models/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,15 +89,15 @@ class Status(StrEnum):
VERIFY_SENDER = "sender_verify"

# other payment statuses
WAIT_HOLD = auto()
HOLD_WAIT = auto()
WAIT_ACCEPT = auto()
WAIT_SECURE = auto()

def is_wait(self) -> bool:
return self in (
self.__class__.WAIT_ACCEPT,
self.__class__.WAIT_SECURE,
self.__class__.WAIT_HOLD,
self.__class__.HOLD_WAIT,
)

def requires_confirmation(self) -> bool:
Expand Down

0 comments on commit 2d564c3

Please sign in to comment.