Skip to content

Commit ba58604

Browse files
pylint: disable line-too-long cases
Disable remaining cases of C0301 line-too-long. Reason: they are related to code insertion in docstrings and documentation macros. Part of #270
1 parent d1d81e7 commit ba58604

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

tarantool/msgpack_ext/types/datetime.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Tarantool `datetime`_ extension type implementation module.
33
"""
4+
# pylint: disable=line-too-long
45

56
from copy import deepcopy
67

test/suites/test_error_ext.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
This module tests work with extended error type.
33
"""
4-
# pylint: disable=missing-class-docstring,missing-function-docstring,protected-access
4+
# pylint: disable=missing-class-docstring,missing-function-docstring,protected-access,line-too-long
55

66
import sys
77
import unittest

0 commit comments

Comments
 (0)