Skip to content
Snippets Groups Projects
Commit 20edfeff authored by Peterson, Peter's avatar Peterson, Peter
Browse files

Re #13987. Removing pylint warnings

parent d71eb698
No related branches found
No related tags found
No related merge requests found
# simply just print out all algorithm names in a directory which can be piped
# to a file
import string, os, re
import glob
import mmap
os.chdir("PythonInterface/plugins/algorithms/WorkflowAlgorithms")
for file in glob.glob("*.py"):
for filename in glob.glob("*.py"):
#print file
if 'PythonAlgorithm' in open(file).read():
print file
if 'PythonAlgorithm' in open(filename).read():
print filename
#os.chdir("LiveData/src")
......@@ -19,4 +15,3 @@ for file in glob.glob("*.py"):
# #print file
# if 'DECLARE_ALGORITHM' in open(file).read():
# print file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment