Skip to content

Commit 52de22e

Browse files
committed
adding additional ignore for flake8
1 parent 378099f commit 52de22e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dash/dash.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -449,14 +449,14 @@ def __init__( # pylint: disable=too-many-statements
449449

450450
if use_async is None:
451451
try:
452-
import asgiref # pylint: disable=unused-import
452+
import asgiref # pylint: disable=unused-import # noqa
453453

454454
use_async = True
455455
except ImportError:
456456
pass
457457
elif use_async:
458458
try:
459-
import asgiref # pylint: disable=unused-import
459+
import asgiref # pylint: disable=unused-import # noqa
460460
except ImportError:
461461
raise Exception(
462462
"You are trying to use dash[async] without having installed the requirements please install via: `pip install dash[async]`"

0 commit comments

Comments
 (0)