@@ -224,9 +224,7 @@ def build(
224224 jit_stencils_new .unlink (missing_ok = True )
225225
226226
227- class _COFF (
228- _Target [_schema .COFFSection , _schema .COFFRelocation ]
229- ): # pylint: disable = too-few-public-methods
227+ class _COFF (_Target [_schema .COFFSection , _schema .COFFRelocation ]):
230228 def _handle_section (
231229 self , section : _schema .COFFSection , group : _stencils .StencilGroup
232230 ) -> None :
@@ -312,9 +310,7 @@ def _handle_relocation(
312310 return _stencils .Hole (offset , kind , value , symbol , addend )
313311
314312
315- class _ELF (
316- _Target [_schema .ELFSection , _schema .ELFRelocation ]
317- ): # pylint: disable = too-few-public-methods
313+ class _ELF (_Target [_schema .ELFSection , _schema .ELFRelocation ]):
318314 def _handle_section (
319315 self , section : _schema .ELFSection , group : _stencils .StencilGroup
320316 ) -> None :
@@ -402,9 +398,7 @@ def _handle_relocation(
402398 return _stencils .Hole (offset , kind , value , symbol , addend )
403399
404400
405- class _MachO (
406- _Target [_schema .MachOSection , _schema .MachORelocation ]
407- ): # pylint: disable = too-few-public-methods
401+ class _MachO (_Target [_schema .MachOSection , _schema .MachORelocation ]):
408402 def _handle_section (
409403 self , section : _schema .MachOSection , group : _stencils .StencilGroup
410404 ) -> None :
0 commit comments