@@ -233,7 +233,9 @@ def build(
233233 jit_stencils_new .unlink (missing_ok = True )
234234
235235
236- class _COFF (_Target [_schema .COFFSection , _schema .COFFRelocation ]): # pylint: disable = too-few-public-methods
236+ class _COFF (
237+ _Target [_schema .COFFSection , _schema .COFFRelocation ]
238+ ): # pylint: disable = too-few-public-methods
237239 def _handle_section (
238240 self , section : _schema .COFFSection , group : _stencils .StencilGroup
239241 ) -> None :
@@ -319,7 +321,9 @@ def _handle_relocation(
319321 return _stencils .Hole (offset , kind , value , symbol , addend )
320322
321323
322- class _ELF (_Target [_schema .ELFSection , _schema .ELFRelocation ]): # pylint: disable = too-few-public-methods
324+ class _ELF (
325+ _Target [_schema .ELFSection , _schema .ELFRelocation ]
326+ ): # pylint: disable = too-few-public-methods
323327 def _handle_section (
324328 self , section : _schema .ELFSection , group : _stencils .StencilGroup
325329 ) -> None :
@@ -407,7 +411,9 @@ def _handle_relocation(
407411 return _stencils .Hole (offset , kind , value , symbol , addend )
408412
409413
410- class _MachO (_Target [_schema .MachOSection , _schema .MachORelocation ]): # pylint: disable = too-few-public-methods
414+ class _MachO (
415+ _Target [_schema .MachOSection , _schema .MachORelocation ]
416+ ): # pylint: disable = too-few-public-methods
411417 def _handle_section (
412418 self , section : _schema .MachOSection , group : _stencils .StencilGroup
413419 ) -> None :
0 commit comments