Commit 9102529
committed
Fix missing astpretty dependency
Running the following in a clean virtualenv:
```
pip install flake8 flake8-expression-complexity
flake8
```
Results in an error like the following:
```
File ".../lib/python3.6/site-packages/flake8_expression_complexity/utils/complexity.py", line 5, in <module>
from astpretty import pprint
ModuleNotFoundError: No module named 'astpretty'
```
This change adds `astpretty` and `flake8` as requirements for this
package, fixing this error.1 parent 2aad586 commit 9102529
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
44 | 44 | | |
45 | 45 | | |
46 | 46 | | |
47 | | - | |
| 47 | + | |
48 | 48 | | |
49 | 49 | | |
50 | 50 | | |
| |||
0 commit comments