From e84bac29e580d782c54980e86a6c90f93d8be318 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Sat, 6 May 2023 16:18:37 -0700 Subject: [PATCH] Remove value type for compatibility with Python 3.8 (#686). --- tests/unit/commands/test_completions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/commands/test_completions.py b/tests/unit/commands/test_completions.py index acb01f6a..ec596988 100644 --- a/tests/unit/commands/test_completions.py +++ b/tests/unit/commands/test_completions.py @@ -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)), *( (