From 6ffbcf6cfa89d8e8698210b762d8b58f62e81afd Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 16 Aug 2022 16:36:58 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/test_slots.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_slots.py b/tests/test_slots.py index 2b06ed2ed..67b6cc4b2 100644 --- a/tests/test_slots.py +++ b/tests/test_slots.py @@ -8,6 +8,7 @@ import sys import types import weakref + from unittest import mock import pytest @@ -745,6 +746,7 @@ def f(self): assert B(11).f == 121 assert B(17).f == 289 + @attr.s(slots=True) class A: x = attr.ib()