Skip to content

Commit 8759bb4

Browse files
committed
Disable pylint check
1 parent 1509266 commit 8759bb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/podio_gen/generator_base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ def _write_file(self, name, content):
247247
if not self.dryrun:
248248
self.generated_files.append(fullname)
249249
if self.formatter_func is not None:
250-
content = self.formatter_func(content, fullname)
250+
content = self.formatter_func(content, fullname) # pylint: disable=not-callable
251251

252252
changed = write_file_if_changed(fullname, content)
253253
self.any_changes = changed or self.any_changes

0 commit comments

Comments
 (0)