mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
Initial commit
This commit is contained in:
19
venv/Lib/site-packages/aiogram/handlers/poll.py
Normal file
19
venv/Lib/site-packages/aiogram/handlers/poll.py
Normal file
@@ -0,0 +1,19 @@
|
||||
from abc import ABC
|
||||
from typing import List
|
||||
|
||||
from aiogram.handlers import BaseHandler
|
||||
from aiogram.types import Poll, PollOption
|
||||
|
||||
|
||||
class PollHandler(BaseHandler[Poll], ABC):
|
||||
"""
|
||||
Base class for poll handlers
|
||||
"""
|
||||
|
||||
@property
|
||||
def question(self) -> str:
|
||||
return self.event.question
|
||||
|
||||
@property
|
||||
def options(self) -> List[PollOption]:
|
||||
return self.event.options
|
Reference in New Issue
Block a user