Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

trigger: document that args is a list #2096

Merged
merged 1 commit into from
Jun 15, 2021
Merged
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
6 changes: 3 additions & 3 deletions sopel/trigger.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,13 +347,13 @@ class Trigger(unicode):
See Python's :meth:`re.Match.groupdict` documentation for details.
"""
args = property(lambda self: self._pretrigger.args)
"""A tuple containing each of the arguments to an event.
"""A list containing each of the arguments to an event.

:type: tuple
:type: list[str]

These are the strings passed between the event name and the colon. For
example, when setting ``mode -m`` on the channel ``#example``, args would
be ``('#example', '-m')``
be ``['#example', '-m']``
"""
urls = property(lambda self: self._pretrigger.urls)
"""A tuple containing all URLs found in the text.
Expand Down