Skip to content

Commit

Permalink
fixed paths in pytest runner
Browse files Browse the repository at this point in the history
  • Loading branch information
smythi93 committed Sep 11, 2023
1 parent c375da7 commit 11b81f4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions resources/subjects/csv/csv2.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@
"unix_dialect",
]

import sflkit.runners.pytest


class Dialect:
"""Describe a CSV dialect.
Expand Down Expand Up @@ -362,7 +360,7 @@ def _guess_delimiter(self, data, delimiters):
additional chunks as necessary.
"""

data = list(filter(None, sflkit.runners.pytest.split("\n")))
data = list(filter(None, data.split("\n")))

ascii = [chr(c) for c in range(127)] # 7-bit ASCII

Expand Down

0 comments on commit 11b81f4

Please sign in to comment.