Skip to content

Commit 4b33644

Browse files
committed
fix size field to correct name
1 parent eca239a commit 4b33644

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

datacrunch/containers/containers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,11 @@ class VolumeMount:
9090
9191
:param type: Type of volume mount
9292
:param mount_path: Path where the volume should be mounted in the container
93+
:param size_in_mb: Size of the volume in megabytes, only used for memory volume mounts
9394
"""
9495
type: VolumeMountType
9596
mount_path: str
96-
size_in_gb: Optional[int] = None
97+
size_in_mb: Optional[int] = None
9798

9899

99100
@dataclass_json

0 commit comments

Comments
 (0)