We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Action.__doc__
The following code, together with knausj master...
from talon import Module, actions mod = Module() @mod.action_class class BugReport: def trigger_bug(): """Trigger a bug""" print(actions.edit.line_swap_down.__doc__)
... triggers the following error...
NotImplementedError: Action 'edit.line_swap_down' exists but the Module method is empty and no Context reimplements it
...rather than returning the documentation.
The text was updated successfully, but these errors were encountered:
fixed in 0.2.0-232
Sorry, something went wrong.
No branches or pull requests
The following code, together with knausj master...
... triggers the following error...
...rather than returning the documentation.
The text was updated successfully, but these errors were encountered: