Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pbalek committed Feb 27, 2025
1 parent 879b2a4 commit a07dc29
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Examples/Scripts/Python/itk.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def runITk(
material=not args.no_material,
)
trackingGeometry = detector.trackingGeometry()
decorators = detector.contextDecorators()
decorators = detector.contextDecorators()

runITk(
trackingGeometry=trackingGeometry,
Expand Down
4 changes: 1 addition & 3 deletions Examples/Scripts/Python/material_mapping_itk.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,7 @@ def runMaterialMapping(

from acts.examples.itk import buildITkGeometry

detector = buildITkGeometry(
geo_example_dir, customMaterialFile=args.material
)
detector = buildITkGeometry(geo_example_dir, customMaterialFile=args.material)
trackingGeometry = detector.trackingGeometry()
decorators = detector.contextDecorators()

Expand Down
4 changes: 1 addition & 3 deletions Examples/Scripts/Python/material_validation_itk.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,7 @@ def runMaterialValidation(

from acts.examples.itk import buildITkGeometry

detector = buildITkGeometry(
geo_example_dir, customMaterialFile=args.material
)
detector = buildITkGeometry(geo_example_dir, customMaterialFile=args.material)
trackingGeometry = detector.trackingGeometry()
decorators = detector.contextDecorators()

Expand Down

0 comments on commit a07dc29

Please sign in to comment.