Skip to content

Commit 9fd27aa

Browse files
committed
update setup with warnings suppress
1 parent 60f1bf5 commit 9fd27aa

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
import os
2+
import warnings
3+
4+
warnings.filterwarnings("ignore")
25

36
from setuptools import find_packages, setup
47

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ skip = mibs
3939
max-line-length = 88
4040
;we don't need have docstrings in every func, class and package
4141
;and W503 is not PEP 8 compliant
42-
ignore = D100,D101,D102,D103,D104,D105,D106,D107,D401,W503,E203,E501
42+
ignore = D100,D101,D102,D103,D104,D105,D106,D107,D401,W503,E203,E501,E402
4343
exclude = mibs

0 commit comments

Comments
 (0)