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

Update Settable for cmd2 2.0.0 #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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 Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ url = "https://pypi.org/simple"
verify_ssl = true

[packages]
cmd2 = ">=0.10.0"
cmd2 = ">=2.0.0"

[dev-packages]
cmd2-abbrev = {editable = true,path = "."}
Expand Down
2 changes: 1 addition & 1 deletion cmd2_abbrev/abbrev.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def __init__(self, *args, **kwargs):
# code placed here runs after cmd2 initializes
# this is where you register any hook functions
self.abbrev = False
self.add_settable(cmd2.Settable('abbrev', bool, 'Accept command abbreviations'))
self.add_settable(cmd2.Settable('abbrev', bool, 'Accept command abbreviations', self))
self.register_postparsing_hook(self.cmd2_abbrev_hook)

def cmd2_abbrev_hook(self, data: cmd2.plugin.PostparsingData) -> cmd2.plugin.PostparsingData:
Expand Down