diff options
author | ptmcg <ptmcg@austin.rr.com> | 2022-05-29 13:34:44 -0500 |
---|---|---|
committer | ptmcg <ptmcg@austin.rr.com> | 2022-05-29 13:34:44 -0500 |
commit | 3f7a1a02fdfdec82c77077612a9cf01095ff018b (patch) | |
tree | 8605ff6a24dbd1b256e37ec57490844ba40f252a /pyparsing/actions.py | |
parent | 45151dce88de55e7325ae37973f30917a340547e (diff) | |
download | pyparsing-git-3f7a1a02fdfdec82c77077612a9cf01095ff018b.tar.gz |
Fix/ignore mypy attr-defined errors, where attr definitions are intentional
Diffstat (limited to 'pyparsing/actions.py')
-rw-r--r-- | pyparsing/actions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyparsing/actions.py b/pyparsing/actions.py index f72c66e..4808c84 100644 --- a/pyparsing/actions.py +++ b/pyparsing/actions.py @@ -156,7 +156,7 @@ def with_attribute(*args, **attr_dict): return pa -with_attribute.ANY_VALUE = object() +with_attribute.ANY_VALUE = object() # type: ignore [attr-defined] def with_class(classname, namespace=""): |