diff options
author | ptmcg <ptmcg@austin.rr.com> | 2021-09-29 05:33:00 -0500 |
---|---|---|
committer | ptmcg <ptmcg@austin.rr.com> | 2021-09-29 05:33:00 -0500 |
commit | 64c7596b917d025ce923512e6d3d17ccb064c093 (patch) | |
tree | 6df5f2af30da036f5d7cca0e903bc4ec1ba49afd /pyparsing/helpers.py | |
parent | 47133a6148a0ac34bbda183d250bad2e4ac2490f (diff) | |
download | pyparsing-git-64c7596b917d025ce923512e6d3d17ccb064c093.tar.gz |
Fixup type annotations
Diffstat (limited to 'pyparsing/helpers.py')
-rw-r--r-- | pyparsing/helpers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyparsing/helpers.py b/pyparsing/helpers.py index cdf28f5..09f1d56 100644 --- a/pyparsing/helpers.py +++ b/pyparsing/helpers.py @@ -8,7 +8,7 @@ from .util import _bslash, _flatten, _escapeRegexRangeChars # def delimited_list( expr: ParserElement, - delim: str = ",", + delim: Union[str, ParserElement] = ",", combine: bool = False, *, allow_trailing_delim: bool = False, |