Skip to content

Commit 9c5e61d

Browse files
Merge pull request #78 from KeithKelleher/main
fix optionality for the count
2 parents f26a76b + cdc1ab4 commit 9c5e61d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/models/pounce/data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class Compound(Node):
2626
class SampleAnalyteRelationship(Relationship):
2727
start_node: Sample
2828
end_node: Node
29-
count: int = None
29+
count: Optional[int] = None
3030
raw_data: Optional[float] = None
3131
stats_ready_data: Optional[float] = None
3232
tpm: Optional[float] = None

0 commit comments

Comments
 (0)