From 0710f3561db73620a0c74921cabff566cd69debf Mon Sep 17 00:00:00 2001 From: pineapple-cat Date: Tue, 30 Apr 2024 14:00:22 +0100 Subject: [PATCH] Added issue numbers to FIXMEs. --- post-processing/config_handler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/post-processing/config_handler.py b/post-processing/config_handler.py index 7004c7ba..8a33bc33 100644 --- a/post-processing/config_handler.py +++ b/post-processing/config_handler.py @@ -102,7 +102,7 @@ def parse_filters(self): # filters if self.filters: - # FIXME: consider a better way of doing this + # FIXME (issue #314): consider a better way of doing this # use hashable tuples to remove duplicate filters self.and_filters = (list(dict.fromkeys([tuple(f) for f in self.filters["and"]])) if self.filters.get("and") else []) @@ -111,7 +111,7 @@ def parse_filters(self): # convert back to lists to maintain mutability self.and_filters = [list(f) for f in self.and_filters] self.or_filters = [list(f) for f in self.or_filters] - # FIXME: consider the purpose of keeping multiple filter lists + # FIXME (issue #314): consider the purpose of keeping multiple filter lists self.filters["and"] = self.and_filters self.filters["or"] = self.or_filters