Skip to content

Commit e0145ef

Browse files
committed
Fix style accoirding to the linter sript (#1304)
The PR was synced after Black integration and the tests passed at databricks/koalas#1296. But looks there was a sync'ing problem.
1 parent e0c4bfb commit e0145ef

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

databricks/koalas/tests/test_csv.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,8 +267,11 @@ def test_read_csv_with_escapechar(self):
267267
ks.read_csv(fn, escapechar="E"), pd.read_csv(fn, escapechar="E"), almost=True
268268
)
269269

270-
self.assert_eq(ks.read_csv(fn, escapechar='ABC', escape="E"),
271-
pd.read_csv(fn, escapechar='E'), almost=True)
270+
self.assert_eq(
271+
ks.read_csv(fn, escapechar="ABC", escape="E"),
272+
pd.read_csv(fn, escapechar="E"),
273+
almost=True,
274+
)
272275

273276
def test_to_csv(self):
274277
pdf = pd.DataFrame({"aa": [1, 2, 3], "bb": [4, 5, 6]}, index=[0, 1, 3])

0 commit comments

Comments
 (0)