diff options
author | ptmcg <ptmcg@austin.rr.com> | 2021-11-06 14:36:09 -0500 |
---|---|---|
committer | ptmcg <ptmcg@austin.rr.com> | 2021-11-07 09:16:47 -0600 |
commit | 785c76d298c06f91c733bbf8985d9f32c6af0758 (patch) | |
tree | 2bd719b090027f44b257887eb77aec091a1553e7 /pyparsing/results.py | |
parent | 0ef76494861cd1d4a69a11e8df95c804e63a4369 (diff) | |
download | pyparsing-git-pyparsing_3.0.5.tar.gz |
Semi-fix collision of Dict and typing.Dict; Some mypy types cleanuppyparsing_3.0.5
Diffstat (limited to 'pyparsing/results.py')
-rw-r--r-- | pyparsing/results.py | 2 |
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 ())) |