Skip to content

Commit 94b2497

Browse files
committed
🚨 Skip rule PTC-W6004
1 parent 3bb9844 commit 94b2497

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

pystreamapi/loaders/__csv_loader.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ def csv(file_path: str, delimiter=',', encoding="utf-8") -> list:
1515
:param delimiter: The delimiter used in the CSV file.
1616
"""
1717
file_path = __validate_path(file_path)
18+
# skipcq: PTC-W6004
1819
with open(file_path, 'r', newline='', encoding=encoding) as csvfile:
1920
csvreader = reader(csvfile, delimiter=delimiter)
2021

0 commit comments

Comments
 (0)