Skip to content

Commit

Permalink
fix: use correct type for timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoFgrx committed Jan 15, 2025
1 parent fab1c3b commit 3cd47f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class DynamicIaCChallenge(DynamicChallenge):
)
mana_cost = db.Column(db.Integer, default=0)
until = db.Column(db.Text) # date
timeout = db.Column(db.Text)
timeout = db.Column(db.Integer)
shared = db.Column(db.Boolean, default=False)
destroy_on_flag = db.Column(db.Boolean, default=False)

Expand Down

0 comments on commit 3cd47f1

Please sign in to comment.