Skip to content

Commit

Permalink
Merge pull request #308 from kyaukyuai/chore/warning
Browse files Browse the repository at this point in the history
Add warning filter in main.py file
  • Loading branch information
kyaukyuai authored Apr 20, 2024
2 parents c9bef30 + ed85f1a commit d92f14e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions gpt_all_star/main.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import warnings

import typer
from dotenv import load_dotenv

Expand All @@ -9,6 +11,9 @@
app = typer.Typer()


warnings.filterwarnings("ignore")


@app.command()
def main(
step: StepType = typer.Option(
Expand Down

0 comments on commit d92f14e

Please sign in to comment.