diff options
author | Simon Warta <[email protected]> | 2017-02-26 20:44:00 +0100 |
---|---|---|
committer | Simon Warta <[email protected]> | 2017-02-26 21:04:20 +0100 |
commit | dd2fb92d7170e6218417708b4d4bf05a6ffcf500 (patch) | |
tree | 1ffc6a3cdfb13697393bf2215e105271da116678 | |
parent | 70d9d062d095242bcfe8df25fc57fb88eadec3a9 (diff) |
Configure: Disable wrong-import-position pylint warning
-rwxr-xr-x | configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py index 9f4246775..8dbf0be6c 100755 --- a/configure.py +++ b/configure.py @@ -38,7 +38,7 @@ import optparse # pylint: disable=deprecated-module if 'dont_write_bytecode' in sys.__dict__: sys.dont_write_bytecode = True -import botan_version +import botan_version # pylint: disable=wrong-import-position class ConfigureError(Exception): pass |