process_mining / pm4py /examples /CHECK_MISSING.py
linpershey's picture
Add 'pm4py/' from commit 'c95693428a77017cd5cfbf41cbdbb0ae844e90a4'
d89df1d
raw
history blame
334 Bytes
import os
if __name__ == "__main__":
files = [x.split(".")[0] for x in os.listdir(".") if x.endswith(".py") and not "execute_everything" in x and not "CHECK_MISSING" in x]
contents_ex_everything = open("execute_everything.py", "r").read()
for f in files:
if f not in contents_ex_everything:
print(f)