Skip to content
This repository has been archived by the owner on Jan 12, 2025. It is now read-only.

Commit

Permalink
fix: stripped version
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbraun89 authored Apr 10, 2023
1 parent 0400f2f commit cfc3b82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nanolayer/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@

def version_callback(value: bool) -> None:
if value:
typer.echo(f"nanolayer version: {resolve_own_package_version()}")
typer.echo(resolve_own_package_version())
raise typer.Exit()


def release_version_callback(value: bool) -> None:
if value:
typer.echo(f"nanolayer release version: {resolve_own_release_version()}")
typer.echo(resolve_own_release_version())
raise typer.Exit()


Expand Down

0 comments on commit cfc3b82

Please sign in to comment.