Skip to content

Commit

Permalink
Merge pull request #70 from nocnokneo/bug/github-url-typo
Browse files Browse the repository at this point in the history
Fix typo in github urls
  • Loading branch information
jhnnsrs authored Jan 17, 2024
2 parents 1de3aeb + 910e095 commit dee06da
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions turms/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class TurmsOptions(str, Enum):

welcome = """
Welcome to Turms! Turms is a GraphQL code generator that generates code from your GraphQL schema and documents. For more information, visit
https://gihub.com/jhnnsrs/turms
https://github.com/jhnnsrs/turms
"""


Expand Down Expand Up @@ -81,7 +81,6 @@ def generate_projects(projects, title="Turms"):

with Live(panel, screen=False) as live:
for key, project in projects.items():

project_tree = Tree(f"{key}", style="not bold white")
tree.add(project_tree)
live.update(panel)
Expand Down Expand Up @@ -172,7 +171,6 @@ def watch_projects(projects, title="Turms"): # pragma: no cover
)

with Live(panel, screen=False) as live:

tree.renderable = f"Watching {project.documents}..."
live.update(panel)

Expand Down Expand Up @@ -201,7 +199,6 @@ def watch_projects(projects, title="Turms"): # pragma: no cover
live.update(panel)

except Exception as e:

tree.renderable = f"[red] {str(e)} [/],"
tree.border_style = "not bold red"
tree.style = "not bold red"
Expand All @@ -216,7 +213,8 @@ def cli(ctx):
Welcome to Turms! Turms is a GraphQL code generator that generates code from your GraphQL schema and documents.
For more information, visit [link=https://gihub.com/jhnnsrs/turms] https://gihub.com/jhnnsrs/turms [/link]"""
For more information, visit [link=https://github.com/jhnnsrs/turms] https://github.com/jhnnsrs/turms [/link]
"""


@cli.command()
Expand Down

0 comments on commit dee06da

Please sign in to comment.