Skip to content

Commit 802e9a0

Browse files
committed
For the explore recipe collection_name is not filled by default.
1 parent 857d59b commit 802e9a0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

explore_recipe/code_axs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ def parse_and_store_commands(__query, beginning_to_remove, stored_newborn_entry=
5050
parameters[substring] = [""]
5151

5252
# Add the target collection name to the parameters
53-
parameters["collection_name"] = [ target_collection_name ]
53+
if target_collection_name:
54+
parameters["collection_name"] = [ target_collection_name ]
5455

5556
# Generate combinations of parameter values
5657
headers = list(parameters.keys())

0 commit comments

Comments
 (0)