Declare type for BaseOptions.description_unwrapped.

This commit is contained in:
Jason R. Coombs 2020-11-29 15:22:58 -05:00
parent cb351607d8
commit 6b772e7fdc

View File

@ -46,7 +46,7 @@ class BaseOptions(usage.Options):
raise usage.UsageError("--version not allowed on subcommands")
description = None # type: Optional[str]
description_unwrapped = None
description_unwrapped = None # type: Optional[str]
def __str__(self):
width = int(os.environ.get('COLUMNS', '80'))