Skip to content

Commit 4715c15

Browse files
committed
Make SampleSheetColumnDefinition closed
1 parent 6114fa2 commit 4715c15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/galaxy/schema/schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ class LimitedUserModel(Model):
388388
SampleSheetColumnValueT = Union[int, float, bool, str, NoneType]
389389

390390

391-
class SampleSheetColumnDefinition(TypedDict):
391+
class SampleSheetColumnDefinition(TypedDict, closed=True):
392392
name: str
393393
description: NotRequired[Optional[str]]
394394
type: SampleSheetColumnType

0 commit comments

Comments
 (0)