You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Errors when running the test.py from examples directory (f5 debugging in vscode)
Got error:
Exception has occurred: FileNotFoundError
[Errno 2] No such file or directory: 'uml2django_output/svelte_app/src/tailwind.css'
File "/home/kolim/Projects/plantuml_django/uml2django/parsers/files/file_writer.py", line 14, in file_writer
with open(file_path, mode) as file:
File "/home/kolim/Projects/plantuml_django/uml2django/parsers/svelte/start_svelte_app.py", line 77, in start_svelte_app
file_writer(
File "/home/kolim/Projects/plantuml_django/test.py", line 10, in <module>
start_svelte_app()
added
mode = "w" if override else "a"
# try to create the src directory
os.makedirs(Path(file_path).parent, exist_ok=True)
with open(file_path, mode) as file:
Error line 90 start_svelte_app.py about filepath
Exception has occurred: FileNotFoundError
[Errno 2] No such file or directory: 'uml2django_output/svelte_app/src/routes/__layout.svelte'
File "/home/kolim/Projects/plantuml_django/uml2django/parsers/svelte/start_svelte_app.py", line 93, in start_svelte_app
shutil.copyfile(
File "/home/kolim/Projects/plantuml_django/test.py", line 10, in <module>
start_svelte_app()
added
os.remove(svelte_app_path_layout_path) if os.path.isfile(
svelte_app_path_layout_path) else None
# add makedirs
os.makedirs(Path(svelte_app_path_layout_path).parent)
The text was updated successfully, but these errors were encountered:
Errors when running the test.py from examples directory (f5 debugging in vscode)
Got error:
added
Error line 90 start_svelte_app.py about filepath
added
The text was updated successfully, but these errors were encountered: