Skip to content

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
slimovich committed Jul 1, 2020
1 parent 0fbb309 commit fd2a183
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/sql.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from typing import List
from typing import List, Optional

from gino.ext.starlette import Gino


async def existing_database(db: Gino, name: str) -> bool:
async def existing_database(db: Gino, name: Optional[str]) -> bool:
""" Return the names of existing database """

query: str = """
Expand Down

0 comments on commit fd2a183

Please sign in to comment.