Skip to content

Commit 5ae4b17

Browse files
format
1 parent 4282417 commit 5ae4b17

File tree

1 file changed

+3
-4
lines changed
  • packages/common/src/bag3d/common/utils

1 file changed

+3
-4
lines changed

packages/common/src/bag3d/common/utils/files.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,10 @@ def get_export_tile_ids() -> Sequence[str]:
9898
List of tile IDs
9999
"""
100100
tileids = []
101-
101+
102102
env = os.getenv("DAGSTER_ENVIRONMENT", "test")
103103
if env == "test":
104-
root_dir = Path(os.getenv("BAG3D_FILESTORE"))/ "reconstruction_input"
104+
root_dir = Path(os.getenv("BAG3D_FILESTORE")) / "reconstruction_input"
105105
version = "test_version"
106106
else:
107107
root_dir = Path(os.getenv("BAG3D_FILESTORE", "/data"))
@@ -113,8 +113,7 @@ def get_export_tile_ids() -> Sequence[str]:
113113
path_quadtree_tsv = export_dir.joinpath("quadtree.tsv")
114114
if path_quadtree_tsv.exists():
115115
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)
118117
]
119118
else:
120119
raise FileNotFoundError(f"File not found: {path_quadtree_tsv}")

0 commit comments

Comments
 (0)