Skip to content

Commit

Permalink
Fix lint ci issues
Browse files Browse the repository at this point in the history
  • Loading branch information
audgirka committed Aug 1, 2023
1 parent 1067656 commit 73dcc9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ ignore = [
"INP",
"ISC",
"N",
"PERF203",
"PGH",
"PLR",
"PT",
Expand Down
4 changes: 1 addition & 3 deletions src/molecule_plugins/vagrant/modules/vagrant.py
Original file line number Diff line number Diff line change
Expand Up @@ -675,9 +675,7 @@ def _get_instance_vagrant_config_dict(self, instance):
return d

def _get_vagrant_config_dict(self):
config_list = []
for instance in self.instances:
config_list.append(self._get_instance_vagrant_config_dict(instance))
config_list = [self._get_instance_vagrant_config_dict(instance) for instance in self.instances]
return config_list

def _get_stdout_log(self):
Expand Down

0 comments on commit 73dcc9b

Please sign in to comment.