Skip to content

Commit 56b8e0e

Browse files
committed
fix formatting
1 parent efa9db6 commit 56b8e0e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

hypothesis-python/src/hypothesis/extra/pandas/impl.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,9 @@ def do_draw(self, data):
148148
dtype = infer_dtype_if_necessary(
149149
dtype=self.dtype, values=result, elements=self.elements, draw=data.draw
150150
)
151-
return pandas.Index(result, dtype=dtype, tupleize_cols=False, name=data.draw(self.name))
151+
return pandas.Index(
152+
result, dtype=dtype, tupleize_cols=False, name=data.draw(self.name)
153+
)
152154

153155

154156
DEFAULT_MAX_SIZE = 10

hypothesis-python/tests/pandas/test_series.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@ def test_unique_series_are_unique(s):
6060

6161
@given(pdst.series(dtype="int8", name=st.just("test_name")))
6262
def test_name_passed_on(s):
63-
assert s.name == "test_name"
63+
assert s.name == "test_name"

0 commit comments

Comments
 (0)