From e21d8f5f17cfff383f43f929520ff727a191964d Mon Sep 17 00:00:00 2001
From: Paul McCarthy <pauldmccarthy@gmail.com>
Date: Thu, 7 Dec 2023 16:16:32 +0000
Subject: [PATCH] BF: Missing import and vecreg argument

---
 fsl/wrappers/fdt.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/fsl/wrappers/fdt.py b/fsl/wrappers/fdt.py
index d89bdca4..586142a5 100644
--- a/fsl/wrappers/fdt.py
+++ b/fsl/wrappers/fdt.py
@@ -7,12 +7,13 @@
 """This module contains wrapper functions for various FDT commands. """
 
 
+import fsl.utils.assertions      as asrt
 import fsl.wrappers.wrapperutils as wutils
 
 
 @wutils.fileOrImage('input', 'output', 'ref', 'warpfield',
                     'rotwarp', 'mask', 'refmask')
-@wutils.fileOrArray('premat', 'postmat', 'rotmat')
+@wutils.fileOrArray('affine', 'premat', 'postmat', 'rotmat')
 @wutils.fslwrapper
 def vecreg(input, output, ref, **kwargs):
     """Wrapper for the ``vecreg`` command. """
-- 
GitLab