We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bb9844 commit 94b2497Copy full SHA for 94b2497
1 file changed
pystreamapi/loaders/__csv_loader.py
@@ -15,6 +15,7 @@ def csv(file_path: str, delimiter=',', encoding="utf-8") -> list:
15
:param delimiter: The delimiter used in the CSV file.
16
"""
17
file_path = __validate_path(file_path)
18
+ # skipcq: PTC-W6004
19
with open(file_path, 'r', newline='', encoding=encoding) as csvfile:
20
csvreader = reader(csvfile, delimiter=delimiter)
21
0 commit comments