Skip to content

Commit 9729fe4

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 35e023f commit 9729fe4

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

src/attr/_make.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -555,8 +555,11 @@ def _make_cached_property_uncached(original_cached_property_func, cls):
555555
unique_filename = _generate_unique_filename(
556556
cls, original_cached_property_func
557557
)
558-
glob = {"original_cached_property": original_cached_property_func,
559-
"cached_property_results": _cached_property_results, "NOTHING": NOTHING}
558+
glob = {
559+
"original_cached_property": original_cached_property_func,
560+
"cached_property_results": _cached_property_results,
561+
"NOTHING": NOTHING,
562+
}
560563
return _linecache_and_compile("\n".join(lines), unique_filename, glob)[
561564
name
562565
]

0 commit comments

Comments
 (0)