Skip to content

Commit 2271a5a

Browse files
committed
Enable more flake8 checks.
1 parent 4674f15 commit 2271a5a

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

rasa/importers/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-

rasa/nlu/emulators/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ moto==1.3.8
1616

1717
# lint/format/types
1818
black==19.3b0; python_version>='3.6'
19-
flake8==3.7.7
19+
flake8==3.7.8
2020
pytype==2019.7.11
2121

2222
# other

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ license_file = LICENSE.txt
2323

2424
[flake8]
2525
max-line-length = 88
26-
ignore = W503, E121, E126, E211, E225, E501, E203, W391, E402, F401, F811, F405, F403
26+
ignore = W503, E121, E126, E211, E225, E501, E203, E402, F401, F811

tests/core/test_slots.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
# coding=utf-8
22
import pytest
33

4-
from rasa.core.slots import *
4+
from rasa.core.slots import (
5+
Slot,
6+
TextSlot,
7+
BooleanSlot,
8+
FloatSlot,
9+
ListSlot,
10+
UnfeaturizedSlot,
11+
CategoricalSlot,
12+
)
513

614

715
class SlotTestCollection(object):

0 commit comments

Comments
 (0)