Skip to content

Commit 6550e0d

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent fe0e78a commit 6550e0d

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

src/attr/_make.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
import itertools
1111
import linecache
1212
import sys
13-
import textwrap
1413
import types
1514
import unicodedata
1615
import weakref

tests/test_slots.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
import functools
88
import pickle
9-
import textwrap
109
import weakref
1110

1211
from unittest import mock
@@ -790,7 +789,12 @@ def f(self):
790789

791790
docstring_lines = A.f.__doc__.splitlines()
792791
docstring_lines_dedented = [line.lstrip() for line in docstring_lines]
793-
assert docstring_lines_dedented[:4] == ["This function is so well documented,", "", "I had to put newlines in", ""]
792+
assert docstring_lines_dedented[:4] == [
793+
"This function is so well documented,",
794+
"",
795+
"I had to put newlines in",
796+
"",
797+
]
794798

795799

796800
def test_slots_cached_property_class_does_not_have__dict__():

0 commit comments

Comments
 (0)