From e25aaff0b6433d4e21aedf2096709af03ae2cf6a Mon Sep 17 00:00:00 2001 From: Jamie Stumme <3059647+StummeJ@users.noreply.github.com> Date: Fri, 18 Oct 2024 14:17:15 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A8=20fix:=20lint=20issues?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_services.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/test_services.py b/tests/test_services.py index 081f1fd..4fc8316 100644 --- a/tests/test_services.py +++ b/tests/test_services.py @@ -690,9 +690,11 @@ def __init__(self, cats_controller, service_settings): def test_alias_dep_resolving(): container = arrange_cats_example() - class BaseClass: ... + class BaseClass: + pass - class DerivedClass(BaseClass): ... + class DerivedClass(BaseClass): + pass class UsingAliasByType: def __init__(self, example: BaseClass):