summaryrefslogtreecommitdiff
path: root/pyparsing/results.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyparsing/results.py')
-rw-r--r--pyparsing/results.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyparsing/results.py b/pyparsing/results.py
index 194c3d9..842d16b 100644
--- a/pyparsing/results.py
+++ b/pyparsing/results.py
@@ -4,7 +4,7 @@ import pprint
from weakref import ref as wkref
from typing import Tuple, Any
-str_type = (str, bytes)
+str_type: Tuple[type, ...] = (str, bytes)
_generator_type = type((_ for _ in ()))