Skip to content

Commit

Permalink
🪚 rm unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
shroominic committed Jul 27, 2023
1 parent 0412e12 commit 286e2ee
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions codeboxapi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,7 @@
from contextvars import ContextVar
from pathlib import Path
from typing import Optional, TYPE_CHECKING

from codeboxapi.config import settings
from codeboxapi.utils import set_api_key
from codeboxapi.box.codebox import CodeBox

if TYPE_CHECKING:
from aiohttp import ClientSession


aiosession: ContextVar[Optional["ClientSession"]] = ContextVar(
"aiohttp-session", default=None
)

FILES_DIR = Path(__file__).parent / "files"

__all__ = [
"CodeBox",
Expand Down

0 comments on commit 286e2ee

Please sign in to comment.