Skip to content

Commit

Permalink
Make prompt less nf-core specific
Browse files Browse the repository at this point in the history
  • Loading branch information
ewels authored Dec 5, 2024
1 parent 978f865 commit da16adb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nf_core/components/components_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ def get_repo_info(directory: Path, use_prompt: Optional[bool] = True) -> Tuple[P
if not repo_type and use_prompt:
log.warning("'repository_type' not defined in %s", config_fn.name)
repo_type = questionary.select(
"Is this repository an nf-core pipeline or a fork of nf-core/modules?",
"Is this repository a pipeline or a modules repository?",
choices=[
{"name": "Pipeline", "value": "pipeline"},
{"name": "nf-core/modules", "value": "modules"},
{"name": "Modules repository", "value": "modules"},
],
style=nf_core.utils.nfcore_question_style,
).unsafe_ask()
Expand Down

0 comments on commit da16adb

Please sign in to comment.