From 1fad96c86313cfd91715fbefd6b88e27d5df99d7 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 10 Nov 2023 17:44:41 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/test_memory_usage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_memory_usage.py b/tests/test_memory_usage.py index 84d89d7..519d649 100644 --- a/tests/test_memory_usage.py +++ b/tests/test_memory_usage.py @@ -10,10 +10,10 @@ class User(Base): name = StringField() -#@mark.skipif( +# @mark.skipif( # platform.python_implementation() == "PyPy", # reason="PyPy's weakref implementation is not stable.", -#) +# ) def test_garbage_collecting(): first = len(User.name.memory) instance = User(name="Bob")