You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think the return type should be Optional[Path], right?
@property
def quick_launch_location(self) -> Path:
if self.mode == "system":
# TODO: Check if this is true?
warnings.warn("Quick launch menus are not available for system level installs")
return
return Path(windows_folder_path(self.mode, False, "quicklaunch"))
The text was updated successfully, but these errors were encountered:
I think the return type should be
Optional[Path]
, right?The text was updated successfully, but these errors were encountered: