Skip to content

Commit c757a6f

Browse files
pylint: disable too-many-lines cases
Disable all current cases of C0302 too-many-lines. Part of #270
1 parent 9153426 commit c757a6f

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

tarantool/connection.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
This module provides API for interaction with a Tarantool server.
33
"""
4+
# pylint: disable=too-many-lines
45

56
import os
67
import time

tarantool/connection_pool.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
This module provides API for interaction with Tarantool servers cluster.
33
"""
4+
# pylint: disable=too-many-lines
45

56
import abc
67
import itertools

tarantool/msgpack_ext/types/timezones/gen-timezones.sh

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ cat <<EOF > ${DST_FILE}
2626
Tarantool timezone info. Automatically generated by
2727
\`\`gen-timezones.sh\`\`.
2828
"""
29+
# pylint: disable=too-many-lines
2930
3031
TZ_UTC = 0x01
3132
TZ_RFC = 0x02

tarantool/msgpack_ext/types/timezones/timezones.py

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Tarantool timezone info. Automatically generated by
33
``gen-timezones.sh``.
44
"""
5+
# pylint: disable=too-many-lines
56

67
TZ_UTC = 0x01
78
TZ_RFC = 0x02

0 commit comments

Comments
 (0)