Remove value type for compatibility with Python 3.8 (#686).

This commit is contained in:
Dan Helfman 2023-05-06 16:18:37 -07:00
parent 1a956e8b05
commit e84bac29e5
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ from borgmatic.commands import completion as module
OptionType = namedtuple('OptionType', ['file', 'choice', 'unknown_required'])
TestCase = Tuple[Action, OptionType]
test_data: list[TestCase] = [
test_data = [
(Action('--flag', 'flag'), OptionType(file=False, choice=False, unknown_required=False)),
*(
(