From 91e786928a27e558be85399f1d33f6d10389dd62 Mon Sep 17 00:00:00 2001 From: Unknown Date: Mon, 13 Sep 2021 10:23:05 +0200 Subject: [PATCH] Satify black --- opencadd/structure/superposition/engines/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opencadd/structure/superposition/engines/base.py b/opencadd/structure/superposition/engines/base.py index 215cef72..1aefd196 100644 --- a/opencadd/structure/superposition/engines/base.py +++ b/opencadd/structure/superposition/engines/base.py @@ -29,8 +29,8 @@ def calculate(self, structures, *args, **kwargs): """ self._safety_checks() assert ( - len(structures) == 2, - "This method can only be used for two structures at the same time, for now" + len(structures) == 2, + "This method can only be used for two structures at the same time, for now", ) return self._calculate(structures, *args, **kwargs)