Fix linting
This commit is contained in:
parent
6d61b37c03
commit
c8d384f15f
2 changed files with 4 additions and 4 deletions
|
|
@ -243,7 +243,7 @@ def list_of_list_to_csv(data: List[List[str]]) -> str:
|
||||||
|
|
||||||
|
|
||||||
def csv_string_to_list(csv_string: str) -> List[List[str]]:
|
def csv_string_to_list(csv_string: str) -> List[List[str]]:
|
||||||
output = io.StringIO(csv_string.replace('\x00', ''))
|
output = io.StringIO(csv_string.replace("\x00", ""))
|
||||||
reader = csv.reader(output)
|
reader = csv.reader(output)
|
||||||
return [row for row in reader]
|
return [row for row in reader]
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue