Skip to content

Commit 88821bb

Browse files
committed
docs: fix enum docstring
1 parent 033ca4b commit 88821bb

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

src/pruna/engine/load_artifacts.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,9 @@ class LOAD_ARTIFACTS_FUNCTIONS(Enum): # noqa: N801
105105
The type of the enum.
106106
start : int
107107
The start index for auto-numbering enum values.
108+
boundary : enum.FlagBoundary or None
109+
Boundary handling mode used by the Enum functional API for Flag and
110+
IntFlag enums.
108111
109112
Examples
110113
--------

src/pruna/engine/save_artifacts.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,9 @@ class SAVE_ARTIFACTS_FUNCTIONS(Enum): # noqa: N801
110110
The type of the enum.
111111
start : int
112112
The start index for auto-numbering enum values.
113+
boundary : enum.FlagBoundary or None
114+
Boundary handling mode used by the Enum functional API for Flag and
115+
IntFlag enums.
113116
114117
Examples
115118
--------

0 commit comments

Comments
 (0)