Skip to content

Commit

Permalink
Update security issues command
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicoretti committed Oct 23, 2023
1 parent b3b1e14 commit 565eab7
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions exasol/toolbox/tools/security_issues.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import sys

import typer
from rich.console import Console

Expand All @@ -8,18 +10,25 @@


@CLI.command(name="convert")
def convert() -> None:
pass
def convert(
format: str = typer.Argument(..., help="input format to be converted."),
) -> None:
for line in sys.stdin:
stdout.print(line)


@CLI.command(name="filter")
def filter() -> None:
pass
def filter(
type: str = typer.Argument(..., help="filter type to apply"),
) -> None:
for line in sys.stdin:
stdout.print(line)


@CLI.command(name="create")
def create() -> None:
pass
for line in sys.stdin:
stdout.print(line)


if __name__ == "__main__":
Expand Down

0 comments on commit 565eab7

Please sign in to comment.