Skip to content

Commit 725f958

Browse files
committed
The tag is a string not an int
1 parent f1166c4 commit 725f958

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/murfey/util/db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ class TomographyPreprocessingParameters(SQLModel, table=True): # type: ignore
478478
)
479479

480480
dcg_id: int = Field(primary_key=True)
481-
dcg_tag: int = Field(primary_key=True)
481+
dcg_tag: str = Field(primary_key=True)
482482
pixel_size: float
483483
dose_per_frame: float
484484
frame_count: int

0 commit comments

Comments
 (0)