Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kaavee315 committed Aug 19, 2024
1 parent 9970523 commit f400385
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions python/composio/client/enums/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,12 @@ def load(self) -> EntityType:
if self._slug in _runtime_actions:
return _runtime_actions[self._slug] # type: ignore
if not (self._path / self._slug).exists():
from composio.cli.apps import update # pylint: disable=import-outside-toplevel
from composio.cli.context import get_context # pylint: disable=import-outside-toplevel
from composio.cli.apps import ( # pylint: disable=import-outside-toplevel
update,
)
from composio.cli.context import ( # pylint: disable=import-outside-toplevel
get_context,
)

logger = get_logger()
logger.debug(
Expand Down

0 comments on commit f400385

Please sign in to comment.