Skip to content

Commit

Permalink
module -> _module
Browse files Browse the repository at this point in the history
  • Loading branch information
keepingitneil committed Oct 9, 2024
1 parent 0a96b2a commit 501d114
Show file tree
Hide file tree
Showing 14 changed files with 27 additions and 27 deletions.
4 changes: 2 additions & 2 deletions livekit-agents/livekit/agents/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@
]

# Cleanup docs of unexported modules
module = dir()
NOT_IN_ALL = [m for m in module if m not in __all__]
_module = dir()
NOT_IN_ALL = [m for m in _module if m not in __all__]

__pdoc__ = {}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ def __init__(self) -> None:
Plugin.register_plugin(AnthropicPlugin())

# Cleanup docs of unexported modules
module = dir()
NOT_IN_ALL = [m for m in module if m not in __all__]
_module = dir()
NOT_IN_ALL = [m for m in _module if m not in __all__]

__pdoc__ = {}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ def __init__(self):
Plugin.register_plugin(AzurePlugin())

# Cleanup docs of unexported modules
module = dir()
NOT_IN_ALL = [m for m in module if m not in __all__]
_module = dir()
NOT_IN_ALL = [m for m in _module if m not in __all__]

__pdoc__ = {}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ def __init__(self):
Plugin.register_plugin(BrowserPlugin())

# Cleanup docs of unexported modules
module = dir()
NOT_IN_ALL = [m for m in module if m not in __all__]
_module = dir()
NOT_IN_ALL = [m for m in _module if m not in __all__]

__pdoc__ = {}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ def __init__(self):
Plugin.register_plugin(CartesiaPlugin())

# Cleanup docs of unexported modules
module = dir()
NOT_IN_ALL = [m for m in module if m not in __all__]
_module = dir()
NOT_IN_ALL = [m for m in _module if m not in __all__]

__pdoc__ = {}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ def download_files(self):
Plugin.register_plugin(ClovaSTTPlugin())

# Cleanup docs of unexported modules
module = dir()
NOT_IN_ALL = [m for m in module if m not in __all__]
_module = dir()
NOT_IN_ALL = [m for m in _module if m not in __all__]

__pdoc__ = {}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ def __init__(self):
Plugin.register_plugin(DeepgramPlugin())

# Cleanup docs of unexported modules
module = dir()
NOT_IN_ALL = [m for m in module if m not in __all__]
_module = dir()
NOT_IN_ALL = [m for m in _module if m not in __all__]

__pdoc__ = {}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ def __init__(self):
Plugin.register_plugin(ElevenLabsPlugin())

# Cleanup docs of unexported modules
module = dir()
NOT_IN_ALL = [m for m in module if m not in __all__]
_module = dir()
NOT_IN_ALL = [m for m in _module if m not in __all__]

__pdoc__ = {}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ def __init__(self):
Plugin.register_plugin(GooglePlugin())

# Cleanup docs of unexported modules
module = dir()
NOT_IN_ALL = [m for m in module if m not in __all__]
_module = dir()
NOT_IN_ALL = [m for m in _module if m not in __all__]

__pdoc__ = {}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def download_files(self):

# Cleanup docs of unexported modules
_module = dir()
NOT_IN_ALL = [m for m in module if m not in __all__]
NOT_IN_ALL = [m for m in _module if m not in __all__]

__pdoc__ = {}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ def __init__(self) -> None:
Plugin.register_plugin(OpenAIPlugin())

# Cleanup docs of unexported modules
module = dir()
NOT_IN_ALL = [m for m in module if m not in __all__]
_module = dir()
NOT_IN_ALL = [m for m in _module if m not in __all__]

__pdoc__ = {}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ def download_files(self) -> None:
Plugin.register_plugin(PlayHTPlugin())

# Cleanup docs of unexported modules
module = dir()
NOT_IN_ALL = [m for m in module if m not in __all__]
_module = dir()
NOT_IN_ALL = [m for m in _module if m not in __all__]

__pdoc__ = {}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ def download_files(self) -> None:
Plugin.register_plugin(RAGPlugin())

# Cleanup docs of unexported modules
module = dir()
NOT_IN_ALL = [m for m in module if m not in __all__]
_module = dir()
NOT_IN_ALL = [m for m in _module if m not in __all__]

__pdoc__ = {}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ def __init__(self):
Plugin.register_plugin(SileroPlugin())

# Cleanup docs of unexported modules
module = dir()
NOT_IN_ALL = [m for m in module if m not in __all__]
_module = dir()
NOT_IN_ALL = [m for m in _module if m not in __all__]

__pdoc__ = {}

Expand Down

0 comments on commit 501d114

Please sign in to comment.