Skip to content

Commit a97fc7b

Browse files
Fix None access error (#575)
Signed-off-by: Matty Widdop <18513864+MattyTheHacker@users.noreply.github.com>
1 parent f533673 commit a97fc7b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ def _setup_auto_su_platform_access_cookie_checking_interval(cls) -> None:
534534
for key, value in (
535535
raw_auto_su_platform_access_cookie_checking_interval.groupdict().items()
536536
)
537-
if (stripped_value := value.strip())
537+
if value and (stripped_value := value.strip())
538538
}
539539

540540
if (

0 commit comments

Comments
 (0)