Skip to content

Commit

Permalink
undo part of 02999a0
Browse files Browse the repository at this point in the history
  • Loading branch information
ReimarBauer committed Dec 16, 2024
1 parent 2edcc42 commit 818da9a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions mslib/mscolab/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,5 +213,7 @@ def __init__(self, op_id, u_id, commit_hash, version_name=None, comment=None):
self.op_id = int(op_id)
self.u_id = int(u_id)
self.commit_hash = str(commit_hash)
self.version_name = str(version_name)
self.comment = str(comment)
if version_name is not None:
self.version_name = str(version_name)
if comment is not None:
self.comment = str(comment)

0 comments on commit 818da9a

Please sign in to comment.