summaryrefslogtreecommitdiff
path: root/cmd2/cmd2.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2019-03-16 18:05:22 -0400
committerTodd Leonhardt <todd.leonhardt@gmail.com>2019-03-16 18:05:22 -0400
commit3b6ed1151bc417633d2207d9ed1e20b491a4ef24 (patch)
tree2190a22ea4d261ea5d10f207da9e440af6d11694 /cmd2/cmd2.py
parentadcc870d6f86ac8e5b66323f845c0e92521bc46c (diff)
downloadcmd2-git-3b6ed1151bc417633d2207d9ed1e20b491a4ef24.tar.gz
Updated CHANGELOG and fixed a typo in a type hint
Diffstat (limited to 'cmd2/cmd2.py')
-rw-r--r--cmd2/cmd2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py
index 5d0e038b..d3028961 100644
--- a/cmd2/cmd2.py
+++ b/cmd2/cmd2.py
@@ -545,7 +545,7 @@ class Cmd(cmd.Cmd):
return utils.strip_ansi(self.prompt)
@property
- def aliases(self) -> bool:
+ def aliases(self) -> Dict[str, str]:
"""Read-only property to access the aliases stored in the StatementParser."""
return self.statement_parser.aliases