Skip to content

Commit e32ef31

Browse files
committed
Data fetch changes
1 parent 38b306e commit e32ef31

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/windows/launcher.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ def __init__(
3030
)
3131

3232
def get_data(self: Self) -> str:
33-
default_template: str = '{"projects": []}'
34-
return self.app_data.fetch_data("launcher.json") or default_template
33+
return self.app_data.fetch_data("launcher.json") or ""
3534

3635
def store_data(self: Self, data: str) -> bool:
3736
return self.app_data.store_data("launcher.json", data)

0 commit comments

Comments
 (0)