Skip to content

Commit bb62f3d

Browse files
authored
remove file_name parameter because it's not used in function (#252)
1 parent 3ed9a90 commit bb62f3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ml_service/pipelines/load_sample_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# Loads the diabetes sample data from sklearn and produces a csv file that can
77
# be used by the build/train pipeline script.
8-
def create_sample_data_csv(file_name):
8+
def create_sample_data_csv():
99
sample_data = load_diabetes()
1010
df = pd.DataFrame(
1111
data=sample_data.data,

0 commit comments

Comments
 (0)