We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a9a07a commit 2cedaedCopy full SHA for 2cedaed
v.alkis.buildings.import.py
@@ -120,7 +120,7 @@
120
BB_districts,
121
download_dict,
122
)
123
-from fs import FS_ABBREVIATION
+from federal_state_info import FS_ABBREVIATION
124
125
orig_region = None
126
OUTPUT_ALKIS_TEMP = None
@@ -606,7 +606,9 @@ def main():
606
federal_states = options["federal_state"].strip()
607
608
# get list of local input folders for federal states
609
- local_fs_list = os.listdir(local_data_dir)
+ local_fs_list = []
610
+ if local_data_dir and local_data_dir != "":
611
+ local_fs_list = os.listdir(local_data_dir)
612
613
# region
614
orig_region = f"ORIG_REGION{PID}"
0 commit comments