summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--g4f/gui/server/api.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/g4f/gui/server/api.py b/g4f/gui/server/api.py
index 43bb4250..ed904be8 100644
--- a/g4f/gui/server/api.py
+++ b/g4f/gui/server/api.py
@@ -10,11 +10,9 @@ from functools import partial
try:
import webview
import platformdirs
-except ImportError:
- ...
-try:
from plyer import camera
from plyer import filechooser
+ app_storage_path = platformdirs.user_pictures_dir
has_plyer = True
except ImportError:
has_plyer = False
@@ -28,7 +26,6 @@ try:
has_android = True
except ImportError:
run_on_ui_thread = lambda a : a
- app_storage_path = platformdirs.user_pictures_dir
user_select_image = partial(
filechooser.open_file,
path=platformdirs.user_pictures_dir(),