From c63487f89d1ee4690ca8a0dcc97df53ef654ee14 Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Mon, 28 Jan 2019 21:20:56 +0000 Subject: [PATCH] ENH: New FileTree method, just a convenience to get all short names --- fsl/utils/filetree/filetree.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/fsl/utils/filetree/filetree.py b/fsl/utils/filetree/filetree.py index 69c3d75b0..4bf3f9f1e 100644 --- a/fsl/utils/filetree/filetree.py +++ b/fsl/utils/filetree/filetree.py @@ -58,6 +58,11 @@ class FileTree(object): res.update(self.variables) return res + @property + def short_names(self) -> List[str]: + """Returns a list containing all short names in the file tree. """ + return list(self.templates.keys()) + def get_variable(self, name: str, default=None) -> str: """ Gets a variable used to fill out the template -- GitLab