Skip to content

Commit

Permalink
Fix example in docs (#1160)
Browse files Browse the repository at this point in the history
  • Loading branch information
fepegar authored Apr 8, 2024
1 parent 46dad64 commit 97f4f5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/examples/plot_include_exclude.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
subject.plot()
transform = tio.Compose(
[
tio.RandomAffine(degrees=(20, 30), exclude='t1'),
tio.RandomBlur(std=(3, 4), include='t2'),
tio.RandomAffine(degrees=(20, 30), exclude=['t1']),
tio.RandomBlur(std=(3, 4), include=['t2']),
]
)
transformed = transform(subject)
Expand Down

0 comments on commit 97f4f5d

Please sign in to comment.