Skip to content
Snippets Groups Projects
Commit e8ddb377 authored by Harry Carey's avatar Harry Carey
Browse files

removed the unnecessary json file

parent f434dd7b
No related branches found
No related tags found
No related merge requests found
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: Current File with Arguments",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"args": "${command:pickArgs}",
"python": "~/miniconda3/envs/Python3.11/bin/python"
}
]
}
\ No newline at end of file
...@@ -29,11 +29,8 @@ def load_visualign_json(filename): ...@@ -29,11 +29,8 @@ def load_visualign_json(filename):
"target-resolution": [456, 528, 320], "target-resolution": [456, 528, 320],
"slices": slices, "slices": slices,
} }
# save with .json extension need to see if i can remove this
with open(
filename.replace(".waln", ".json").replace(".wwrp", ".json"), "w"
) as f:
json.dump(lz_compat_file, f, indent=4)
else: else:
slices = vafile["slices"] slices = vafile["slices"]
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment