Skip to content

Commit

Permalink
Resolve new linting errors (#580)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwalker174 authored Aug 4, 2023
1 parent 0de5ec5 commit 4959f62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/sv_utils/src/sv_utils/benchmark_variant_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from sv_utils.get_truth_overlap \
import SampleConfidentVariants, ConfidentVariants, PrecisionRecallCurve, SvTypeCutoffSelector

from typing import List, Dict, Text, Iterable, Optional, Mapping, Union, Tuple, Set, Collection, Iterator, TypeVar,\
from typing import List, Dict, Text, Iterable, Optional, Mapping, Union, Tuple, Set, Collection, Iterator, TypeVar, \
Sequence, Container


Expand Down
2 changes: 1 addition & 1 deletion src/sv_utils/tests/common_test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def assert_series_equal(s1: pandas.Series, s2: pandas.Series, context: str, chec
assert_indices_equal(s1.index, s2.index, context=context)

assert numpy.array_equal(s1.isnull().values, s2.isnull().values), f"{context}: null values not equal"
assert numpy.array_equal(s1.loc[~s1.isnull().values], s2.loc[~s2.isnull().values]),\
assert numpy.array_equal(s1.loc[~s1.isnull().values], s2.loc[~s2.isnull().values]), \
f"{context}: non-null values not equal"


Expand Down

0 comments on commit 4959f62

Please sign in to comment.