Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion telebot/asyncio_handler_backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def __init_subclass__(cls) -> None:
state_list.append(value)
cls._state_list = state_list

@property
@classmethod
def state_list(self):
return self._state_list

Expand Down
2 changes: 1 addition & 1 deletion telebot/handler_backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def __init_subclass__(cls) -> None:
state_list.append(value)
cls._state_list = state_list

@property
@classmethod
def state_list(self):
return self._state_list

Expand Down