From 0cd481b1497c2f80194d94a3f149d02b5c00ceed Mon Sep 17 00:00:00 2001 From: Yacine Elhamer <16624109+yelhamer@users.noreply.github.com> Date: Wed, 14 Jun 2023 22:42:25 +0100 Subject: [PATCH] remove redundant comments Co-authored-by: Moritz --- capa/features/common.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/capa/features/common.py b/capa/features/common.py index 8318dee5..1362c538 100644 --- a/capa/features/common.py +++ b/capa/features/common.py @@ -278,7 +278,6 @@ class Registry(String): super().__init__(value, description) def __eq__(self, other): - # Registry instance is in a ruleset if isinstance(other, Registry): return super().__eq__(other) return False @@ -290,7 +289,6 @@ class Filename(String): super().__init__(value, description) def __eq__(self, other): - # Mutex instance is in a ruleset if isinstance(other, Filename): return super().__eq__(other) return False @@ -302,7 +300,6 @@ class Mutex(String): super().__init__(value, description) def __eq__(self, other): - # Mutex instance is in a ruleset if isinstance(other, Mutex): return super().__eq__(other) return False