From 8847899a4390ef24d2427ee4b59ed92e4c5aafc8 Mon Sep 17 00:00:00 2001 From: Josselin Date: Thu, 22 Apr 2021 14:09:12 +0200 Subject: [PATCH] run black --- slither/slithir/variables/reference.py | 2 +- slither/slithir/variables/temporary.py | 2 +- slither/slithir/variables/tuple.py | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/slither/slithir/variables/reference.py b/slither/slithir/variables/reference.py index d9b0e8882..c65dd061e 100644 --- a/slither/slithir/variables/reference.py +++ b/slither/slithir/variables/reference.py @@ -7,8 +7,8 @@ from slither.core.variables.variable import Variable if TYPE_CHECKING: from slither.core.cfg.node import Node -class ReferenceVariable(ChildNode, Variable): +class ReferenceVariable(ChildNode, Variable): def __init__(self, node: "Node", index=None): super().__init__() if index is None: diff --git a/slither/slithir/variables/temporary.py b/slither/slithir/variables/temporary.py index db47973f7..657c95803 100644 --- a/slither/slithir/variables/temporary.py +++ b/slither/slithir/variables/temporary.py @@ -6,8 +6,8 @@ from slither.core.variables.variable import Variable if TYPE_CHECKING: from slither.core.cfg.node import Node -class TemporaryVariable(ChildNode, Variable): +class TemporaryVariable(ChildNode, Variable): def __init__(self, node: "Node", index=None): super().__init__() if index is None: diff --git a/slither/slithir/variables/tuple.py b/slither/slithir/variables/tuple.py index b72f98767..0931a8ab5 100644 --- a/slither/slithir/variables/tuple.py +++ b/slither/slithir/variables/tuple.py @@ -8,7 +8,6 @@ if TYPE_CHECKING: class TupleVariable(ChildNode, SlithIRVariable): - def __init__(self, node: "Node", index=None): super().__init__() if index is None: