From 31671c85deaf5ff242e2f4252651977bfd0df20c Mon Sep 17 00:00:00 2001 From: sid-parikh Date: Mon, 11 Sep 2023 03:10:21 +0000 Subject: [PATCH] automated style fixes --- rj_gameplay/tests/stp/utils/test_typed_key_dict.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/rj_gameplay/tests/stp/utils/test_typed_key_dict.py b/rj_gameplay/tests/stp/utils/test_typed_key_dict.py index d7db8be1500..447a44728af 100644 --- a/rj_gameplay/tests/stp/utils/test_typed_key_dict.py +++ b/rj_gameplay/tests/stp/utils/test_typed_key_dict.py @@ -15,12 +15,10 @@ def __eq__(self, other) -> bool: return self.name == other.name -class ConcreteA(Interface): - ... +class ConcreteA(Interface): ... -class ConcreteB(Interface): - ... +class ConcreteB(Interface): ... class Key(TypedKey[ValueConcreteT]):