Skip to content

Commit

Permalink
Remove unneeded f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
maxnoe committed Dec 18, 2022
1 parent 09f82fa commit dcfd41d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/ctapipe_io_lst/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def get_channel_info(pixel_status):
def load_camera_geometry():
''' Load camera geometry from bundled resources of this repo '''
f = resource_filename(
'ctapipe_io_lst', f'resources/LSTCam.camgeom.fits.gz'
'ctapipe_io_lst', 'resources/LSTCam.camgeom.fits.gz'
)
Provenance().add_input_file(f, role="CameraGeometry")
cam = CameraGeometry.from_table(f)
Expand Down Expand Up @@ -333,7 +333,6 @@ def __init__(self, input_url=None, **kwargs):
)
self.pointing_source = PointingSource(subarray=self.subarray, parent=self)
self.lst_service = self.fill_lst_service_container(self.tel_id, self.camera_config)


target_info = {}
pointing_mode = PointingMode.UNKNOWN
Expand Down

0 comments on commit dcfd41d

Please sign in to comment.