Remove unused imports

This commit is contained in:
Paul Sanders
2023-01-10 07:27:08 -05:00
parent 993879218e
commit 7779a88222
2 changed files with 0 additions and 4 deletions

View File

@@ -23,10 +23,8 @@ from typing import (
)
from limits import RateLimitItem # type: ignore
from limits.aio.storage import Storage as AsyncStorage # type: ignore
from limits.errors import ConfigurationError # type: ignore
from limits.storage import MemoryStorage, storage_from_string # type: ignore
from limits.storage import Storage # type: ignore
from limits.strategies import STRATEGIES, RateLimiter # type: ignore
from starlette.config import Config
from starlette.datastructures import MutableHeaders

View File

@@ -1,5 +1,3 @@
from typing import Optional
from starlette.requests import Request