Skip to content

Commit dbd4819

Browse files
committed
run make style
1 parent 390b8df commit dbd4819

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

tortoise/fields/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ class JSONFieldKwargs(FieldKwargs, total=False):
139139
null: bool
140140
field_type: Any
141141

142+
142143
class RelationalFieldKwargs(FieldKwargs, total=False):
143144
"""Constructor arguments for :func:`ForeignKeyField` and :func:`OneToOneField`.
144145
@@ -159,7 +160,6 @@ class ManyToManyFieldKwargs(_FieldKwargsCommon, total=False):
159160
create_unique_index: bool # deprecated alias for unique
160161

161162

162-
163163
class _FieldMeta(type):
164164
# TODO: Require functions to return field instances instead of this hack
165165
def __new__(mcs, name: str, bases: tuple[type, ...], attrs: dict) -> type:

tortoise/fields/relational.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
MODEL = TypeVar("MODEL", bound="Model")
3131

3232

33-
3433
class _NoneAwaitable:
3534
__slots__ = ()
3635

0 commit comments

Comments
 (0)