diff options
author | Trygve Aaberge <trygveaa@gmail.com> | 2021-04-13 00:10:31 +0200 |
---|---|---|
committer | Trygve Aaberge <trygveaa@gmail.com> | 2021-04-13 00:55:23 +0200 |
commit | defd8a0e1a46b786bd3880632477e742a4d6d56c (patch) | |
tree | 7c2d42afc7a756a36be76d3c5ecefe4f9a1cdc60 /_pytest/conftest.py | |
parent | 4c528c9f7611fbfa43c3601844b73a41663e0a3b (diff) | |
download | wee-slack-defd8a0e1a46b786bd3880632477e742a4d6d56c.tar.gz |
Ignore failing flake rules instead of selecting only a few
E203 should be ignored when using black according to their docs.
Diffstat (limited to '_pytest/conftest.py')
-rw-r--r-- | _pytest/conftest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/_pytest/conftest.py b/_pytest/conftest.py index 2dffd4f..733ca77 100644 --- a/_pytest/conftest.py +++ b/_pytest/conftest.py @@ -11,8 +11,8 @@ from websocket import ABNF sys.path.append(".") -import wee_slack -from wee_slack import EventRouter, initiate_connection +import wee_slack # noqa: E402 +from wee_slack import EventRouter, initiate_connection # noqa: E402 class fakewebsocket(object): |