Skip to content

Commit

Permalink
fix: If source_web is True, input_path expects a List[str]
Browse files Browse the repository at this point in the history
  • Loading branch information
Sieboldianus committed Aug 1, 2023
1 parent 02368df commit a1339b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_integration_inaturalist_gbif.py
Expand Up @@ -64,7 +64,7 @@ def system_integration_inaturalist_gbif():
tm_cfg.local_file_type = "csv"
if data_source_url.startswith("http"):
tm_cfg.source_web = True
tm_cfg.input_path = data_source_url
tm_cfg.input_path = [data_source_url]
else:
tm_cfg.input_path = Path(data_source_url)
tm_cfg.dbpassword_output = db_pass
Expand Down

0 comments on commit a1339b1

Please sign in to comment.