Skip to content

Commit

Permalink
chore: restore old tmp_dir_name
Browse files Browse the repository at this point in the history
  • Loading branch information
RaczeQ committed Dec 31, 2023
1 parent 572c94f commit 9795dab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions quackosm/pbf_file_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,9 +223,9 @@ def convert_pbf_to_gpq(
if explode_tags is None:
explode_tags = self.tags_filter is not None

with tempfile.TemporaryDirectory(dir=self.working_directory.resolve()) as tmp_dir_name_2:
tmp_dir_name = tmp_dir_name_2
tmp_dir_name = "files/xd"
with tempfile.TemporaryDirectory(dir=self.working_directory.resolve()) as tmp_dir_name:
# tmp_dir_name = tmp_dir_name_2
# tmp_dir_name = "files/xd"
try:
self._set_up_duckdb_connection(tmp_dir_name)
result_file_path = result_file_path or self._generate_geoparquet_result_file_path(
Expand Down

0 comments on commit 9795dab

Please sign in to comment.