Kaynağa Gözat

json except ImportError

Rino Beeli 2 yıl önce
ebeveyn
işleme
a090c8d7ab
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      nicegui/json/__init__.py

+ 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