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 abc0705 commit 9afb4eeCopy full SHA for 9afb4ee
craft.py
@@ -22,6 +22,8 @@ def create_value_map(filepath:str):
22
variable_file_content_map = {}
23
files = os.listdir(filepath)
24
for file in files:
25
+ if file in [".command_history"]:
26
+ continue
27
curr_file = os.path.join(filepath, file)
28
if os.path.isfile(curr_file):
29
variable_file_content_map[curr_file] = read_file_return_base64ed_content(curr_file)
0 commit comments