diff options
Diffstat (limited to 'lang/python/pyme/errors.py')
-rw-r--r-- | lang/python/pyme/errors.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lang/python/pyme/errors.py b/lang/python/pyme/errors.py index 1e6e4ab6..9c582073 100644 --- a/lang/python/pyme/errors.py +++ b/lang/python/pyme/errors.py @@ -20,6 +20,9 @@ from . import util util.process_constants('GPG_ERR_', globals()) +# To appease static analysis tools, we define some constants here: +NO_ERROR = 0 + class PymeError(Exception): pass |