Reformatted import paths

This commit is contained in:
Ege Emir Özkan
2020-08-22 01:10:41 +03:00
parent 79cdc9e348
commit 7efa8c8f4e
3 changed files with 4 additions and 14 deletions

View File

@@ -3,11 +3,11 @@ Defines the Datalite decorator that can be used to convert a dataclass to
a class bound to a sqlite3 database.
"""
from sqlite3.dbapi2 import IntegrityError
from typing import Dict, Optional, List, Callable
from dataclasses import Field, asdict
from typing import Dict, Optional, Callable
from dataclasses import asdict
import sqlite3 as sql
from constraints import ConstraintFailedError
from .constraints import ConstraintFailedError
from .commons import _convert_sql_format, _convert_type, _create_table, type_table