File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -46,9 +46,18 @@ def _check_path_dir(path: str) -> None:
46
46
"""Make sure local output directory exists and create it if not."""
47
47
48
48
@staticmethod
49
- def _check_folder (folder_name : str , projects_endpoint : str = "tidy3d/projects" ) -> None :
49
+ def _check_folder (
50
+ folder_name : str ,
51
+ projects_endpoint : str = "tidy3d/projects" ,
52
+ project_endpoint : str = "tidy3d/project" ,
53
+ ) -> None :
50
54
"""Make sure ``folder_name`` exists on the web UI and create it if not."""
51
- Folder .get (folder_name , create = True , projects_endpoint = projects_endpoint )
55
+ Folder .get (
56
+ folder_name ,
57
+ create = True ,
58
+ projects_endpoint = projects_endpoint ,
59
+ project_endpoint = project_endpoint ,
60
+ )
52
61
53
62
54
63
class Job (WebContainer ):
You can’t perform that action at this time.
0 commit comments