File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 31
31
]
32
32
33
33
34
- DEBUG = os .environ .get ("DEBUG" , False )
34
+ DEBUG = bool ( os .environ .get ("DEBUG" ) )
35
35
36
36
HYPRLAND_INSTANCE_SIGNATURE = os .environ .get ("HYPRLAND_INSTANCE_SIGNATURE" , "NO_INSTANCE" )
37
37
43
43
try :
44
44
# May throw an OSError because AF_UNIX path is too long: try to work around it only if needed
45
45
original_ipc_folder = (
46
- f' { os .environ [" XDG_RUNTIME_DIR" ]} /hypr/{ HYPRLAND_INSTANCE_SIGNATURE } '
47
- if os .path .exists (f' { os .environ [" XDG_RUNTIME_DIR" ]} /hypr/{ HYPRLAND_INSTANCE_SIGNATURE } ' )
46
+ f" { os .environ [' XDG_RUNTIME_DIR' ]} /hypr/{ HYPRLAND_INSTANCE_SIGNATURE } "
47
+ if os .path .exists (f" { os .environ [' XDG_RUNTIME_DIR' ]} /hypr/{ HYPRLAND_INSTANCE_SIGNATURE } " )
48
48
else f"/tmp/hypr/{ HYPRLAND_INSTANCE_SIGNATURE } " # noqa: S108
49
49
)
50
50
Original file line number Diff line number Diff line change 1
1
"""Package version."""
2
2
3
- VERSION = "2.4.5-20 "
3
+ VERSION = "2.4.5-21 "
You can’t perform that action at this time.
0 commit comments