Skip to content

Commit 3d71841

Browse files
Remove no longer needed pdb
Signed-off-by: Lukasz Gryglicki <[email protected]>
1 parent 0072753 commit 3d71841

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

cla-backend/cla/models/dynamo_models.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -945,6 +945,8 @@ class DocumentModel(MapAttribute):
945945
document_major_version = NumberAttribute(default=1)
946946
document_minor_version = NumberAttribute(default=0)
947947
document_author_name = UnicodeAttribute()
948+
# LG: now we can use DateTimeAttribute - because pynamodb was updated
949+
# document_creation_date = UnicodeAttribute()
948950
document_creation_date = DateTimeAttribute()
949951
document_preamble = UnicodeAttribute(null=True)
950952
document_legal_entity_name = UnicodeAttribute(null=True)

cla-backend/cla/tests/unit/conftest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@ def fake_dynamodb(*args):
119119
ProjectModel.create_table(read_capacity_units=1, write_capacity_units=1)
120120

121121

122-
import pdb
123122
@pytest.fixture()
124123
def company_table():
125124
""" Fixture that creates the company table """

0 commit comments

Comments
 (0)