Skip to content

Commit 37c2199

Browse files
committed
Formatting
1 parent c5fbe48 commit 37c2199

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

inbox/models/backends/imap.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -505,17 +505,21 @@ class LabelItem(MailSyncBase, UpdatedAtMixin, DeletedAtMixin):
505505
imapuid = relationship(
506506
"ImapUid",
507507
backref=backref(
508-
"labelitems", collection_class=set, cascade="all, delete-orphan",
509-
passive_deletes=True
508+
"labelitems",
509+
collection_class=set,
510+
cascade="all, delete-orphan",
511+
passive_deletes=True,
510512
),
511513
)
512514

513515
label_id = Column(ForeignKey(Label.id, ondelete="CASCADE"), nullable=False)
514516
label = relationship(
515517
Label,
516518
backref=backref(
517-
"labelitems", cascade="all, delete-orphan", lazy="dynamic",
518-
passive_deletes=True
519+
"labelitems",
520+
cascade="all, delete-orphan",
521+
lazy="dynamic",
522+
passive_deletes=True,
519523
),
520524
)
521525

0 commit comments

Comments
 (0)