add-assistant #2
|
@ -24,11 +24,11 @@ class ConfigureAssistant:
|
|||
"md",
|
||||
"pdf",
|
||||
"php",
|
||||
"png",
|
||||
# "png", # PNG is supported but not actually parsed
|
||||
"pptx",
|
||||
"py",
|
||||
"rb",
|
||||
"tar",
|
||||
# "tar", # TAR is supported but not actually parsed
|
||||
"tex",
|
||||
"ts",
|
||||
"txt",
|
||||
|
@ -98,7 +98,7 @@ class ConfigureAssistant:
|
|||
"""
|
||||
extension = file_path.split(".")[-1].lower()
|
||||
|
||||
excluded_extensions = ["schdoc", "exe", "so", "dll", "outjob", "pcbdoc", "png"]
|
||||
excluded_extensions = ["schdoc", "exe", "so", "dll", "outjob", "pcbdoc", "png", "tar"]
|
||||
|
||||
# If the extension is not in supported formats and not in excluded extensions, spoof the file name
|
||||
if extension not in self.SUPPORTED_FORMATS and extension not in excluded_extensions:
|
||||
|
@ -182,8 +182,6 @@ if __name__ == "__main__":
|
|||
print("Files to be uploaded:")
|
||||
for path in file_paths:
|
||||
new_filename, should_upload = configurator.preprocess_file(path)
|
||||
if should_upload:
|
||||
print(f"Original: {path}, New: {new_filename}")
|
||||
|
||||
# Configure the assistant
|
||||
configurator.configure()
|
||||
|
|
Loading…
Reference in New Issue