Skip to content

Commit

Permalink
Fix pylint disable R0913
Browse files Browse the repository at this point in the history
Signed-off-by: yexiaochuan <yxc2020@foxmail.com>
  • Loading branch information
yexiaochuan committed Oct 15, 2024
1 parent 7b21e2b commit 3d8df71
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions core/testenvmanager/dataset/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,15 +204,15 @@ def _read_data_file(cls, data_file, data_format):

return data

# pylint: disable=too-many-positional-arguments, R0913
# pylint: disable=R0913
def _get_dataset_file(self, data, output_dir, dataset_type, index, dataset_format):
data_file = self._get_file_url(output_dir, dataset_type, index, dataset_format)

self._write_data_file(data, data_file, dataset_format)

return data_file

# pylint: disable=too-many-positional-arguments, R0913
# pylint: disable=R0913
def _splitting_more_times(self, data_file, data_format, ratio,
data_types=None, output_dir=None, times=1):
if not data_types:
Expand Down Expand Up @@ -246,7 +246,7 @@ def _splitting_more_times(self, data_file, data_format, ratio,

return data_files

# pylint: disable=too-many-positional-arguments, R0913
# pylint: disable=R0913
def _fwt_splitting(self, data_file, data_format, ratio,
data_types=None, output_dir=None, times=1):
if not data_types:
Expand Down Expand Up @@ -286,7 +286,7 @@ def _fwt_splitting(self, data_file, data_format, ratio,
return data_files

# add new splitting method for semantic segmentation
# pylint: disable=too-many-positional-arguments, R0913
# pylint: disable=R0913
def _city_splitting(self, data_file, data_format, ratio,
data_types=None, output_dir=None, times=1):
if not data_types:
Expand Down Expand Up @@ -331,7 +331,7 @@ def _city_splitting(self, data_file, data_format, ratio,

return data_files

# pylint: disable=too-many-positional-arguments, R0913
# pylint: disable=R0913
def _hard_example_splitting(self, data_file, data_format, ratio,
data_types=None, output_dir=None, times=1):
if not data_types:
Expand Down Expand Up @@ -371,7 +371,7 @@ def _hard_example_splitting(self, data_file, data_format, ratio,
return data_files

@classmethod
# pylint: disable=too-many-positional-arguments, R0913
# pylint: disable=R0913
def load_data(cls, file: str, data_type: str, label=None, use_raw=False, feature_process=None):
"""
load data
Expand Down

0 comments on commit 3d8df71

Please sign in to comment.