Skip to content

Commit

Permalink
chore: fix pylint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
andreoliwa committed Aug 29, 2021
1 parent 3d095d1 commit 4b6da6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nitpick/style/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def _validate_item(self, key, info, value_dict):
return validation_errors

def _get_validation_schemas_for_file(self, info):
for plugin_class in self.project.plugin_manager.hook.can_handle(info=info):
for plugin_class in self.project.plugin_manager.hook.can_handle(info=info): # pylint: disable=no-member
yield plugin_class.validation_schema

def _validate_schemas(self, info, schemas, value_dict):
Expand Down

0 comments on commit 4b6da6b

Please sign in to comment.