We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8e8a06 commit cd0a70cCopy full SHA for cd0a70c
docs/ElunaDoc/__main__.py
@@ -19,8 +19,8 @@ def find_class_files(search_path):
19
# Get the current working dir and switch to the search path.
20
old_dir = os.getcwd()
21
os.chdir(search_path)
22
- # Search for all files ending in "Methods.h", and exclude CustomMethods.h
23
- method_file_names = [file_name for file_name in glob.glob('*Methods.h') if file_name != 'CustomMethods.h']
+ # Search for all files ending in "Methods.h", and exclude BigIntMethods.h
+ method_file_names = [file_name for file_name in glob.glob('*Methods.h') if file_name != 'BigIntMethods.h']
24
# Open each file.
25
method_files = [open(file_name, 'r') for file_name in method_file_names]
26
# Go back to where we were before.
0 commit comments