Skip to content

Commit a58542c

Browse files
Restyled by autopep8
1 parent f7fe626 commit a58542c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

metering/models.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@ class OrgServiceConfigModel(Base):
1212
org_id = Column('org_id', VARCHAR(225), nullable=False)
1313
service_id = Column('service_id', VARCHAR(225), nullable=False)
1414
free_calls = Column('free_calls', Integer, nullable=False)
15-
effective_start_date = Column('effective_start_date', TIMESTAMP(timezone=True))
15+
effective_start_date = Column(
16+
'effective_start_date', TIMESTAMP(timezone=True))
1617
effective_end_date = Column('effective_end_date', TIMESTAMP(timezone=True))
17-
created_at = Column('created_at', TIMESTAMP(timezone=True), server_default=func.current_timestamp())
18+
created_at = Column('created_at', TIMESTAMP(
19+
timezone=True), server_default=func.current_timestamp())
1820

1921

2022
class UserOrgGroupModel(Base):

0 commit comments

Comments
 (0)