Skip to content

Commit

Permalink
Disable pylint check
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Mar 11, 2024
1 parent 1509266 commit 8759bb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/podio_gen/generator_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def _write_file(self, name, content):
if not self.dryrun:
self.generated_files.append(fullname)
if self.formatter_func is not None:
content = self.formatter_func(content, fullname)
content = self.formatter_func(content, fullname) # pylint: disable=not-callable

changed = write_file_if_changed(fullname, content)
self.any_changes = changed or self.any_changes
Expand Down

0 comments on commit 8759bb4

Please sign in to comment.