Skip to content

Commit e7b37bf

Browse files
committed
Adjusted type hint for 'rsync_module'
1 parent b7ac67f commit e7b37bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/murfey/util/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ class MachineConfig(BaseModel):
188188
# If rsync is disabled, rsync_basepath works out to be "/".
189189
# Must always be set.
190190
)
191-
rsync_module: Optional[str] = Field(
192-
default=None,
191+
rsync_module: str = Field(
192+
default="",
193193
description=(
194194
"Name of the rsync module the files are being transferred with. The module "
195195
"will be appended to the rsync base path, and the relative paths will be "

0 commit comments

Comments
 (0)