Skip to content

Commit 9afb4ee

Browse files
committed
ignore: command history
1 parent abc0705 commit 9afb4ee

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

craft.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ def create_value_map(filepath:str):
2222
variable_file_content_map = {}
2323
files = os.listdir(filepath)
2424
for file in files:
25+
if file in [".command_history"]:
26+
continue
2527
curr_file = os.path.join(filepath, file)
2628
if os.path.isfile(curr_file):
2729
variable_file_content_map[curr_file] = read_file_return_base64ed_content(curr_file)

0 commit comments

Comments
 (0)