Skip to content

Commit

Permalink
revert __init__ imports with suggested __all__ workaround for flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
jhmejia committed May 6, 2024
1 parent a4cad2e commit 46ca2bc
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/endpoints/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from .categorize import categorize
from .summarize import summarize
from .transcription import transcription
from .analyze import analyze
from .server_info import server_info

__all__ = ['categorize', 'summarize', 'transcription', 'analyze', 'server_info']

0 comments on commit 46ca2bc

Please sign in to comment.