1
0
Rino Beeli 2 жил өмнө
parent
commit
a090c8d7ab

+ 1 - 1
nicegui/json/__init__.py

@@ -12,7 +12,7 @@ try:
     # orjson not available on all platforms, fallback to Python's json module if not available
     import orjson
     has_orjson = True
-except:
+except ImportError:
     has_orjson = False