Skip to content

Commit

Permalink
Shorten long line
Browse files Browse the repository at this point in the history
  • Loading branch information
dkratzert committed Mar 22, 2023
1 parent 1f6f2cb commit d2725f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_generators.py
Original file line number Diff line number Diff line change
Expand Up @@ -1975,7 +1975,8 @@ class Group(Base):
class User(Base):
__tablename__ = 'users'
__table_args__ = (
ForeignKeyConstraint(['groups_id'], ['groups.groups_id'], name='fk_users_groups_id'),
ForeignKeyConstraint(['groups_id'], ['groups.groups_id'], \
name='fk_users_groups_id'),
PrimaryKeyConstraint('users_id', name='users_pkey')
)
Expand Down

0 comments on commit d2725f2

Please sign in to comment.