@@ -721,7 +721,7 @@ def competition_leaderboard_download(self, competition, path, quiet=True):
721
721
=========
722
722
competition: the name of the competition
723
723
path: a path to download the file to
724
- quiet: suppress verbose output (default is False )
724
+ quiet: suppress verbose output (default is True )
725
725
"""
726
726
response = self .process_response (
727
727
self .competition_download_leaderboard_with_http_info (
@@ -1062,7 +1062,7 @@ def dataset_download_file(self,
1062
1062
file_name: the dataset configuration file
1063
1063
path: if defined, download to this location
1064
1064
force: force the download if the file already exists (default False)
1065
- quiet: suppress verbose output (default is False )
1065
+ quiet: suppress verbose output (default is True )
1066
1066
"""
1067
1067
if '/' in dataset :
1068
1068
self .validate_dataset_string (dataset )
@@ -1107,7 +1107,7 @@ def dataset_download_files(self,
1107
1107
should be in format [owner]/[dataset-name]
1108
1108
path: the path to download the dataset to
1109
1109
force: force the download if the file already exists (default False)
1110
- quiet: suppress verbose output (default is False )
1110
+ quiet: suppress verbose output (default is True )
1111
1111
unzip: if True, unzip files upon download (default is False)
1112
1112
"""
1113
1113
if dataset is None :
@@ -1470,7 +1470,7 @@ def download_file(self, response, outfile, quiet=True, chunk_size=1048576):
1470
1470
==========
1471
1471
response: the response to download
1472
1472
outfile: the output file to download to
1473
- quiet: suppress verbose output (default is False )
1473
+ quiet: suppress verbose output (default is True )
1474
1474
chunk_size: the size of the chunk to stream
1475
1475
"""
1476
1476
@@ -1834,7 +1834,7 @@ def kernels_pull(self, kernel, path, metadata=False, quiet=True):
1834
1834
kernel: the kernel to pull
1835
1835
path: the path to pull files to on the filesystem
1836
1836
metadata: if True, also pull metadata
1837
- quiet: suppress verbosity (default is False )
1837
+ quiet: suppress verbosity (default is True )
1838
1838
"""
1839
1839
existing_metadata = None
1840
1840
if kernel is None :
0 commit comments