From 3b21d7c9abacd49b2a72f741d2e5fc8dc3cc33bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kevin=20Hern=C3=A1ndez=20Rostr=C3=A1n?= Date: Thu, 17 Aug 2023 10:02:57 -0600 Subject: [PATCH] chore: Remove unused function_stack property --- lizard.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lizard.py b/lizard.py index b0f2482..63f0153 100755 --- a/lizard.py +++ b/lizard.py @@ -364,7 +364,6 @@ class NestingStack(object): def __init__(self): self.nesting_stack = [] self.pending_function = None - self.function_stack = [] def with_namespace(self, name): return ''.join([x.name_in_space for x in self.nesting_stack] + [name])