Sort imports with isort

This commit is contained in:
2022-07-21 00:32:59 +02:00
parent d52c8df6f3
commit e749128b16
5 changed files with 21 additions and 13 deletions

View File

@@ -1,10 +1,14 @@
from config import conf
from peewee import MySQLDatabase
from peewee import SqliteDatabase
from peewee import Model
from peewee import AutoField, DateField, IntegerField
from peewee import (
AutoField,
DateField,
IntegerField,
IntegrityError,
Model,
MySQLDatabase,
SqliteDatabase,
)
from peewee import IntegrityError
from config import conf
backend = conf["db"].get("backend", None)
if backend == "sqlite":