From 1b43c8dc09adb9b54609cc8a1916c99eb6fe75c9 Mon Sep 17 00:00:00 2001 From: natsuoto <279971144+natsuoto@users.noreply.github.com> Date: Thu, 16 Jul 2026 17:31:49 +0530 Subject: chore: enforce fully strict static typing across library, tests, and tooling with zero suppressions --- tests/errors/context.test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/errors') diff --git a/tests/errors/context.test.py b/tests/errors/context.test.py index 60e7add..4414849 100644 --- a/tests/errors/context.test.py +++ b/tests/errors/context.test.py @@ -7,7 +7,7 @@ from edify.errors.context import CallerContext, capture_caller_context def test_capture_caller_context_returns_none_when_every_frame_is_inside_edify(): - with mock.patch("edify.errors.context.sys._getframe", return_value=None): + with mock.patch("edify.errors.context.inspect.currentframe", return_value=None): assert capture_caller_context() is None -- cgit v1.2.3