Skip to content

Commit 72db61a

Browse files
committed
Fix wrong docs references on pyrogram.filters
1 parent 4f19785 commit 72db61a

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

pyrogram/methods/decorators/on_callback_query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def on_callback_query(
3535
:obj:`~pyrogram.handlers.CallbackQueryHandler`.
3636
3737
Parameters:
38-
filters (:obj:`~pyrogram.Filters`, *optional*):
38+
filters (:obj:`~pyrogram.filters`, *optional*):
3939
Pass one or more filters to allow only a subset of callback queries to be passed
4040
in your function.
4141

pyrogram/methods/decorators/on_chosen_inline_result.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def on_chosen_inline_result(
3535
:obj:`~pyrogram.handlers.ChosenInlineResult`.
3636
3737
Parameters:
38-
filters (:obj:`~pyrogram.Filters`, *optional*):
38+
filters (:obj:`~pyrogram.filters`, *optional*):
3939
Pass one or more filters to allow only a subset of chosen inline results to be passed
4040
in your function.
4141

pyrogram/methods/decorators/on_deleted_messages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def on_deleted_messages(
3535
:obj:`~pyrogram.handlers.DeletedMessagesHandler`.
3636
3737
Parameters:
38-
filters (:obj:`~pyrogram.Filters`, *optional*):
38+
filters (:obj:`~pyrogram.filters`, *optional*):
3939
Pass one or more filters to allow only a subset of messages to be passed
4040
in your function.
4141

pyrogram/methods/decorators/on_inline_query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def on_inline_query(
3535
:obj:`~pyrogram.handlers.InlineQueryHandler`.
3636
3737
Parameters:
38-
filters (:obj:`~pyrogram.Filters`, *optional*):
38+
filters (:obj:`~pyrogram.filters`, *optional*):
3939
Pass one or more filters to allow only a subset of inline queries to be passed
4040
in your function.
4141

pyrogram/methods/decorators/on_message.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def on_message(
3535
:obj:`~pyrogram.handlers.MessageHandler`.
3636
3737
Parameters:
38-
filters (:obj:`~pyrogram.Filters`, *optional*):
38+
filters (:obj:`~pyrogram.filters`, *optional*):
3939
Pass one or more filters to allow only a subset of messages to be passed
4040
in your function.
4141

pyrogram/methods/decorators/on_poll.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def on_poll(
3535
:obj:`~pyrogram.handlers.PollHandler`.
3636
3737
Parameters:
38-
filters (:obj:`~pyrogram.Filters`, *optional*):
38+
filters (:obj:`~pyrogram.filters`, *optional*):
3939
Pass one or more filters to allow only a subset of polls to be passed
4040
in your function.
4141

pyrogram/methods/decorators/on_user_status.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def on_user_status(
3434
:obj:`~pyrogram.handlers.UserStatusHandler`.
3535
3636
Parameters:
37-
filters (:obj:`~pyrogram.Filters`, *optional*):
37+
filters (:obj:`~pyrogram.filters`, *optional*):
3838
Pass one or more filters to allow only a subset of UserStatus updated to be passed in your function.
3939
4040
group (``int``, *optional*):

0 commit comments

Comments
 (0)