Skip to content

Commit

Permalink
Removed Special characters
Browse files Browse the repository at this point in the history
  • Loading branch information
Poiuy7312 committed Sep 18, 2023
1 parent 3bcd345 commit fa53f10
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,6 @@ jobs:
if: always()
run: |
poetry run task lint
- name: Encode Windows
if: matrix.os == 'windows-latest'
run: |
$PSDefaultParameterValues['*:Encoding'] = 'utf8'
# Run the program
- name: Run program
if: always()
Expand Down
14 changes: 7 additions & 7 deletions chasten/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def display_serve_or_publish_details(

@cli.command()
def interact(ctx: typer.Context) -> None:
"""🚀 Interactively configure and run."""
"""Interactively configure and run."""
# construct a Trogon object; this will create a
# terminal-user interface that will allow the
# person using chasten to pick a mode and then
Expand Down Expand Up @@ -322,7 +322,7 @@ def configure( # noqa: PLR0913
),
verbose: bool = typer.Option(False, help="Display verbose debugging output"),
) -> None:
"""🪂 Manage chasten's configuration."""
"""Manage chasten's configuration."""
# output the preamble, including extra parameters specific to this function
output_preamble(
verbose,
Expand Down Expand Up @@ -440,7 +440,7 @@ def analyze( # noqa: PLR0913, PLR0915
verbose: bool = typer.Option(False, help="Enable verbose mode output."),
save: bool = typer.Option(False, help="Enable saving of output file(s)."),
) -> None:
"""💫 Analyze the AST of Python source code."""
"""Analyze the AST of Python source code."""
# output the preamble, including extra parameters specific to this function
output_preamble(
verbose,
Expand Down Expand Up @@ -710,7 +710,7 @@ def integrate( # noqa: PLR0913
),
verbose: bool = typer.Option(False, help="Display verbose debugging output"),
) -> None:
"""🚧 Integrate files and make a database."""
"""Integrate files and make a database."""
# output the preamble, including extra parameters specific to this function
output_preamble(
verbose,
Expand Down Expand Up @@ -799,7 +799,7 @@ def datasette_serve( # noqa: PLR0913
),
verbose: bool = typer.Option(False, help="Display verbose debugging output"),
) -> None:
"""🏃 Start a local datasette server."""
"""Start a local datasette server."""
# output the preamble, including extra parameters specific to this function
output_preamble(
verbose,
Expand Down Expand Up @@ -868,7 +868,7 @@ def datasette_publish( # noqa: PLR0913
),
verbose: bool = typer.Option(False, help="Display verbose debugging output"),
) -> None:
"""🌎 Publish a datasette to Fly or Vercel."""
"""Publish a datasette to Fly or Vercel."""
# output the preamble, including extra parameters specific to this function
output_preamble(
verbose,
Expand Down Expand Up @@ -897,7 +897,7 @@ def datasette_publish( # noqa: PLR0913

@cli.command()
def log() -> None:
"""🦚 Start the logging server."""
"""Start the logging server."""
# display the header
output.print_header()
# display details about the server
Expand Down

0 comments on commit fa53f10

Please sign in to comment.