Skip to content

Commit

Permalink
Pylint disable
Browse files Browse the repository at this point in the history
  • Loading branch information
kaavee315 committed Aug 19, 2024
1 parent 99c96b9 commit 9970523
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/composio/client/enums/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ 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
from composio.cli.context import get_context
from composio.cli.apps import update # pylint: disable=import-outside-toplevel
from composio.cli.context import get_context # pylint: disable=import-outside-toplevel

logger = get_logger()
logger.debug(
Expand Down

0 comments on commit 9970523

Please sign in to comment.