File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
packages/common/src/bag3d/common/utils Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -98,10 +98,10 @@ def get_export_tile_ids() -> Sequence[str]:
98
98
List of tile IDs
99
99
"""
100
100
tileids = []
101
-
101
+
102
102
env = os .getenv ("DAGSTER_ENVIRONMENT" , "test" )
103
103
if env == "test" :
104
- root_dir = Path (os .getenv ("BAG3D_FILESTORE" ))/ "reconstruction_input"
104
+ root_dir = Path (os .getenv ("BAG3D_FILESTORE" )) / "reconstruction_input"
105
105
version = "test_version"
106
106
else :
107
107
root_dir = Path (os .getenv ("BAG3D_FILESTORE" , "/data" ))
@@ -113,8 +113,7 @@ def get_export_tile_ids() -> Sequence[str]:
113
113
path_quadtree_tsv = export_dir .joinpath ("quadtree.tsv" )
114
114
if path_quadtree_tsv .exists ():
115
115
tileids = [
116
- er .tile_id
117
- for er in check_export_results (path_quadtree_tsv , path_tiles_dir )
116
+ er .tile_id for er in check_export_results (path_quadtree_tsv , path_tiles_dir )
118
117
]
119
118
else :
120
119
raise FileNotFoundError (f"File not found: { path_quadtree_tsv } " )
You can’t perform that action at this time.
0 commit comments