Skip to content

Commit e3eb6d0

Browse files
flake8: disable import unused in dbapi
tarantool.error values import are the part of the DBAPI requirements, so they cannot be omitted. The same rule is used in pylint. Part of #270
1 parent e4740c3 commit e3eb6d0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tarantool/dbapi.py

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
.. _PEP-249: http://www.python.org/dev/peps/pep-0249/
55
"""
66
# pylint: disable=fixme,unused-import
7+
# flake8: noqa: F401
78

89
from tarantool.connection import Connection as BaseConnection
910
from tarantool.error import (

0 commit comments

Comments
 (0)