Skip to content

Commit

Permalink
Give a default value of None to the telemetry_descriptors.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 434763744
  • Loading branch information
tfx-copybara committed Mar 15, 2022
1 parent 0994a83 commit 01b5ff5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tfx_bsl/tfxio/csv_tfxio.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ class CsvTFXIO(_CsvTFXIOBase):
def __init__(self,
file_pattern: Text,
column_names: List[Text],
telemetry_descriptors: List[Text],
telemetry_descriptors: Optional[List[Text]] = None,
validate: Optional[bool] = True,
delimiter: Optional[Text] = ",",
skip_blank_lines: Optional[bool] = True,
Expand Down

0 comments on commit 01b5ff5

Please sign in to comment.