mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
678 B
Python
28 lines
678 B
Python
6 years ago
|
#!/usr/bin/env python
|
||
|
from __future__ import print_function
|
||
|
|
||
|
import os
|
||
|
import re
|
||
|
import sys
|
||
|
|
||
|
MAIN_DISPLAY_IMPORT = 'from __main__ import display'
|
||
|
|
||
|
|
||
|
def main():
|
||
|
skip = set()
|
||
|
|
||
|
for path in sys.argv[1:] or sys.stdin.read().splitlines():
|
||
|
if path in skip:
|
||
|
continue
|
||
|
|
||
|
with open(path, 'r') as f:
|
||
|
for i, line in enumerate(f.readlines()):
|
||
|
if MAIN_DISPLAY_IMPORT in line:
|
||
|
lineno = i + 1
|
||
|
colno = line.index(MAIN_DISPLAY_IMPORT) + 1
|
||
|
print('%s:%d:%d: Display is a singleton, just import and instantiate' % (path, lineno, colno))
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|