We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae7231d commit 5df5fa1Copy full SHA for 5df5fa1
docs/source/changes.md
@@ -29,6 +29,7 @@ releases are available on [PyPI](https://pypi.org/project/pytask) and
29
- {pull}`586` improves linting.
30
- {pull}`587` improves typing of `capture.py`.
31
- {pull}`588` resets class variables of `ExecutionReport` and `Traceback`.
32
+- {pull}`590` fixes an error introduced in {pull}`588`.
33
34
## 0.4.6 - 2024-03-13
35
src/_pytask/traceback.py
@@ -74,7 +74,7 @@ def __rich_console__(
74
yield filtered_exc_info[2]
75
else:
76
yield RichTraceback.from_exception(
77
- *filtered_exc_info, show_locals=self._show_locals
+ *filtered_exc_info, show_locals=self.show_locals
78
)
79
80
0 commit comments