Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions nf_core/pipelines/create/githubrepoquestion.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@


class GithubRepoQuestion(Screen):

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should the class itself be renamed ?

"""Ask if the user wants to create a GitHub repository."""
"""Ask if the user wants to create a Git repository."""

def compose(self) -> ComposeResult:
yield Header()
yield Footer()
yield Markdown(
dedent(
"""
# Create GitHub repository
# Create Git repository
"""
)
)
yield Markdown(dedent(github_text_markdown))
yield Center(
Button("Create GitHub repo", id="github_repo", variant="success"),
Button("Create Git repo", id="github_repo", variant="success"),
Button("Finish without creating a repo", id="exit", variant="primary"),
classes="cta",
)
Loading