Convert non_user_facing_dataset_suffixes to tuple when loading from bqetl_project.yaml (#4066)
This commit is contained in:
Родитель
40baf741c0
Коммит
d66bb2a8d9
|
@ -369,8 +369,10 @@ def clean(
|
|||
for dataset in client.list_datasets(target_project)
|
||||
if not user_facing_only
|
||||
or not dataset.dataset_id.endswith(
|
||||
ConfigLoader.get(
|
||||
"default", "non_user_facing_dataset_suffixes", fallback=[]
|
||||
tuple(
|
||||
ConfigLoader.get(
|
||||
"default", "non_user_facing_dataset_suffixes", fallback=[]
|
||||
)
|
||||
)
|
||||
)
|
||||
]
|
||||
|
|
Загрузка…
Ссылка в новой задаче