Skip to content

Commit

Permalink
remove unnecessary parameter in __init__ qurit#64
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhack47 authored and asim-shrestha committed Jan 8, 2023
1 parent 539b8e7 commit 7b4b424
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions rt_utils/rtstruct.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,9 @@ class RTStruct:
Wrapper class to facilitate appending and extracting ROI's within an RTStruct
"""

def __init__(self, series_data, ds: FileDataset, ROIGenerationAlgorithm=0, warn_only: bool = False):
def __init__(self, series_data, ds: FileDataset, ROIGenerationAlgorithm=0):
self.series_data = series_data
self.ds = ds
self.warn_only = warn_only
self.frame_of_reference_uid = ds.ReferencedFrameOfReferenceSequence[
-1
].FrameOfReferenceUID # Use last strucitured set ROI
Expand Down

0 comments on commit 7b4b424

Please sign in to comment.