Skip to content

Commit

Permalink
Merge pull request #4 from dvm-shlee/main
Browse files Browse the repository at this point in the history
manifest syntax polishing and sordino patch
  • Loading branch information
dvm-shlee authored May 2, 2024
2 parents 80fe2aa + 3f9e24a commit 8a23cb0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion plugin/bids/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: bids
type: plugin
subtype: tonifti
version: 0.0.1
source: bids.py::Bids
source: bids.py:Bids

authors:
- Sung-Ho Lee (shlee@unc.edu)
Expand Down
2 changes: 1 addition & 1 deletion plugin/myplugin/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: myplugin
type: plugin
subtype: tonifti
version: 0.0.1
source: myplugin.py::MyPlugIn
source: myplugin.py:MyPlugIn

authors:
- MyName (my@email.domain)
Expand Down
2 changes: 1 addition & 1 deletion plugin/sordino/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: sordino
type: plugin
subtype: tonifti
version: 24.4.27
source: sordino.py::Sordino
source: sordino.py:Sordino

authors:
- Sung-Ho Lee (shlee@unc.edu)
Expand Down
2 changes: 1 addition & 1 deletion plugin/sordino/sordino.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def __init__(self, pvobj: Union['PvScan', 'PvFiles'],
self.mem_limit: Optional[float] = mem_limit
self.num_frames: Optional[int] = num_frames or self._num_frames
self.nufft: str = nufft
self.scale_mode: scale_mode
self.scale_mode = scale_mode
self.slope, self.inter = 1, 0

def get_dataobj(self) -> np.ndarray:
Expand Down

0 comments on commit 8a23cb0

Please sign in to comment.