Skip to content

Commit debd067

Browse files
committed
Default to None rather than empty string
1 parent c4c5871 commit debd067

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/genie_python/genie.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -789,9 +789,9 @@ def connected_pvs_in_list(pv_list: list[str], is_local: bool = False) -> list[st
789789
def begin(
790790
period: int = 1,
791791
meas_id: str | None = None,
792-
meas_type: str = "",
793-
meas_subid: str = "",
794-
sample_id: str = "",
792+
meas_type: str | None = None,
793+
meas_subid: str | None = None,
794+
sample_id: str | None = None,
795795
delayed: bool = False,
796796
quiet: bool = False,
797797
paused: bool = False,

0 commit comments

Comments
 (0)