We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35e023f commit 9729fe4Copy full SHA for 9729fe4
1 file changed
src/attr/_make.py
@@ -555,8 +555,11 @@ def _make_cached_property_uncached(original_cached_property_func, cls):
555
unique_filename = _generate_unique_filename(
556
cls, original_cached_property_func
557
)
558
- glob = {"original_cached_property": original_cached_property_func,
559
- "cached_property_results": _cached_property_results, "NOTHING": NOTHING}
+ glob = {
+ "original_cached_property": original_cached_property_func,
560
+ "cached_property_results": _cached_property_results,
561
+ "NOTHING": NOTHING,
562
+ }
563
return _linecache_and_compile("\n".join(lines), unique_filename, glob)[
564
name
565
]
0 commit comments