diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-03-19 20:28:13 +0100 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-03-19 20:28:13 +0100 |
commit | a466a86ee60873a39ac6c5a790ec8c3fa1f598c0 (patch) | |
tree | 6c86f1b41b6344cad1176bfbb0522547ff10410d | |
parent | Fix Bing key error (diff) | |
download | gpt4free-a466a86ee60873a39ac6c5a790ec8c3fa1f598c0.tar gpt4free-a466a86ee60873a39ac6c5a790ec8c3fa1f598c0.tar.gz gpt4free-a466a86ee60873a39ac6c5a790ec8c3fa1f598c0.tar.bz2 gpt4free-a466a86ee60873a39ac6c5a790ec8c3fa1f598c0.tar.lz gpt4free-a466a86ee60873a39ac6c5a790ec8c3fa1f598c0.tar.xz gpt4free-a466a86ee60873a39ac6c5a790ec8c3fa1f598c0.tar.zst gpt4free-a466a86ee60873a39ac6c5a790ec8c3fa1f598c0.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/gui/server/api.py | 5 |
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(), |