Skip to content

Commit

Permalink
added missing self return
Browse files Browse the repository at this point in the history
  • Loading branch information
Reza committed Sep 10, 2024
1 parent db8fc3c commit 5823576
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pyalfe/interfaces/freesurfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ def __init__(self):

def mri_synthseg(self, input, output):
self.cmd += ['mri_synthseg', '--i', input, '--o', output]
return self

def run(self):
return subprocess.run(self.cmd, capture_output=True).stdout.decode("utf-8")

0 comments on commit 5823576

Please sign in to comment.