Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
Signed-off-by: xadupre <xadupre@microsoft.com>
  • Loading branch information
xadupre committed Jan 6, 2023
1 parent 779bdf4 commit b8c6d90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _unittests/ut_numbers/test_weighted_dataframe.py
Expand Up @@ -108,7 +108,7 @@ def test_weighted_array(self):
n2 = WeightedDouble(3, 2)
ser = WeightedArray([n1, n2])
self.assertEqual(ser.name, "WeightedArray")
self.assertEqual(ser.dtype.name, "object")
self.assertEqual(ser.dtype.name, "object") # pylint: disable=E1101
df = DataFrame(data=dict(wd=ser, x=[6., 7.]))
s = str(df).replace("\n", " ").replace(" ", "_")
self.assertEqual(
Expand Down

0 comments on commit b8c6d90

Please sign in to comment.