Skip to content

Commit

Permalink
Test Tagging /2.
Browse files Browse the repository at this point in the history
Signed-off-by: dornech <[email protected]>
  • Loading branch information
dornech committed Nov 23, 2024
1 parent 2f86532 commit eb8dae3
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/pytestdornech/skeleton.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ class LogLevel(str, enum.Enum):
INFO = 'info'
DEBUG = 'debug'


def fib(n: int) -> int:
"""Fibonacci example function"""
if not n > 0:
Expand All @@ -48,7 +47,6 @@ def fib(n: int) -> int:
a, b = b, a + b
return a


def setup_logging(log_level: LogLevel):
"""Setup basic logging"""
log_format = '[%(asctime)s] %(levelname)s:%(name)s:%(message)s'
Expand All @@ -61,7 +59,6 @@ def setup_logging(log_level: LogLevel):
help='Dornechs testpackage',
)


@app.command()
def main(
n: Annotated[int, typer.Argument(..., min=1, help='Positive integer')] = 7,
Expand Down

0 comments on commit eb8dae3

Please sign in to comment.