We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86e7400 commit c9a0242Copy full SHA for c9a0242
CONTRIBUTIONS.md
@@ -27,3 +27,5 @@ Thanks to the following people:
27
[dwinston](https://github.com/dwinston)
28
29
[gianlucasalvato](https://github.com/gianlucasalvato)
30
+
31
+[tiagoslg](https://https://github.com/tiagoslg)
django_plotly_dash/views.py
@@ -28,7 +28,14 @@
from django.http import HttpResponse, HttpResponseRedirect
from django.shortcuts import redirect
-from dash.fingerprint import check_fingerprint
32
+try:
33
+ from dash.fingerprint import check_fingerprint
34
+except:
35
+ # check_fingerprint not available, fake it
36
+ def check_fingerprint(resource):
37
+ return resource, None
38
39
40
from .models import DashApp
41
from .util import get_initial_arguments, static_path
0 commit comments