From b0382086520f83058a2d492239a384d9ee3a296b Mon Sep 17 00:00:00 2001 From: Evan Sultanik Date: Mon, 8 Nov 2021 16:35:37 -0500 Subject: [PATCH] Too much C on the brain --- polytracker/tracing.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/polytracker/tracing.py b/polytracker/tracing.py index b4c2f45a..2ad2866a 100644 --- a/polytracker/tracing.py +++ b/polytracker/tracing.py @@ -1128,9 +1128,9 @@ def taints(self, labels: Iterable[TaintForestNode]) -> Taints: taints.add(self.file_offset(node)) else: parent1, parent2 = node.parent_one, node.parent_two - // a node will always have either zero or two parents. - // labels that are reused will reuse their associated nodes. - // all other nodes are unions. + # a node will always have either zero or two parents. + # labels that are reused will reuse their associated nodes. + # all other nodes are unions. assert parent1 is not None and parent2 is not None if parent1 not in history: history.add(parent1)