summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/flakes.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/tools/flakes.py b/tools/flakes.py
deleted file mode 100644
index 6869a4477..000000000
--- a/tools/flakes.py
+++ /dev/null
@@ -1,23 +0,0 @@
-"""
- wrapper for pyflakes to ignore gettext based warning:
- "undefined name '_'"
-
- Synced in from openstack-common
-"""
-
-__all__ = ['main']
-
-import sys
-import six.moves.builtins as builtins
-import pyflakes.api
-from pyflakes import checker
-
-
-def main():
- checker.Checker.builtIns = (set(dir(builtins)) |
- set(['_']) |
- set(checker._MAGIC_GLOBALS))
- sys.exit(pyflakes.api.main())
-
-if __name__ == "__main__":
- main()