From 7fe5cf7c1ab7d7a68991d1aeebaa338f7c5d2fd0 Mon Sep 17 00:00:00 2001 From: Kevin Van Brunt Date: Thu, 13 Feb 2020 18:37:50 -0500 Subject: Fixed missing import --- examples/basic_completion.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'examples') diff --git a/examples/basic_completion.py b/examples/basic_completion.py index 615f949d..e021828b 100755 --- a/examples/basic_completion.py +++ b/examples/basic_completion.py @@ -11,6 +11,8 @@ flag_based_complete() and index_based_complete() are basic methods and should on familiar with argparse. The recommended approach for tab completing positional tokens and flags is to use argparse-based completion. For an example integrating tab completion with argparse, see argparse_completion.py """ +import functools + import cmd2 # List of strings used with completion functions -- cgit v1.2.1