From cad2be444956812a97b43f220b7782979f97241c Mon Sep 17 00:00:00 2001 From: Kyle Swanson Date: Sat, 28 Dec 2019 00:07:57 +0000 Subject: [PATCH] Removing comment --- tap/utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tap/utils.py b/tap/utils.py index 133d7d4..35cebcc 100644 --- a/tap/utils.py +++ b/tap/utils.py @@ -199,7 +199,6 @@ def get_class_variables(cls: type) -> OrderedDict: def get_literals(literal: Literal, variable: str) -> Tuple[Callable[[str], Any], List[str]]: """Extracts the values from a Literal type and ensures that the values are all primitive types.""" - # import ipdb; ipdb.set_trace() literals = list(get_args(literal)) if not all(isinstance(literal, PRIMITIVES) for literal in literals):