liniting and applying black

This commit is contained in:
collerek
2020-08-09 07:51:06 +02:00
parent 9d9346fb13
commit 241628b1d9
9 changed files with 455 additions and 247 deletions

View File

@ -1,6 +1,18 @@
from orm.exceptions import ModelDefinitionError, ModelNotSet, MultipleMatches, NoMatch
from orm.fields import BigInteger, Boolean, Date, DateTime, Decimal, Float, ForeignKey, Integer, JSON, String, Text, \
Time
from orm.fields import (
BigInteger,
Boolean,
Date,
DateTime,
Decimal,
Float,
ForeignKey,
Integer,
JSON,
String,
Text,
Time,
)
from orm.models import Model
__version__ = "0.0.1"
@ -21,5 +33,5 @@ __all__ = [
"ModelDefinitionError",
"ModelNotSet",
"MultipleMatches",
"NoMatch"
"NoMatch",
]