Skip to content

Commit

Permalink
removing float enforcement in ParametricOpticalSystem
Browse files Browse the repository at this point in the history
  • Loading branch information
maxecharles committed Nov 29, 2024
1 parent 93af2a5 commit 5b60f8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dLux/optical_systems.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def __init__(
"""
self.psf_npixels = int(psf_npixels)
self.oversample = int(oversample)
self.psf_pixel_scale = float(psf_pixel_scale)
self.psf_pixel_scale = psf_pixel_scale
super().__init__(**kwargs)


Expand Down

0 comments on commit 5b60f8e

Please sign in to comment.