Skip to content
Snippets Groups Projects
Commit 2ada4225 authored by David Schäfer's avatar David Schäfer
Browse files

removed debug statements

parent 92f05333
No related branches found
No related tags found
No related merge requests found
...@@ -95,11 +95,9 @@ class BaseFlagger: ...@@ -95,11 +95,9 @@ class BaseFlagger:
def isFlagged(self, flags: ArrayLike, flag: T = None, comparator: str = ">") -> ArrayLike: def isFlagged(self, flags: ArrayLike, flag: T = None, comparator: str = ">") -> ArrayLike:
cp = COMPARATOR_MAP[comparator] cp = COMPARATOR_MAP[comparator]
# print ("comp:", cp)
if flag is None: if flag is None:
flag = self.GOOD flag = self.GOOD
return pd.notnull(flags) & cp(flags, self._checkFlag(flag)) return pd.notnull(flags) & cp(flags, self._checkFlag(flag))
# return flags == self._checkFlag(flag)
def _checkFlag(self, flag): def _checkFlag(self, flag):
if flag not in self.flags: if flag not in self.flags:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment