From 9f4861e58ff10a4f158a07e1bd8eb9de4d5fd612 Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Thu, 21 Jan 2021 18:09:09 +0000 Subject: [PATCH] inputs: properly mark name as a property It was meant to be a property not a function. --- osbuild/inputs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/osbuild/inputs.py b/osbuild/inputs.py index f0e250f1..e0e32c4c 100644 --- a/osbuild/inputs.py +++ b/osbuild/inputs.py @@ -37,6 +37,7 @@ class Input: self.info = info self.options = options or {} + @property def name(self) -> str: return self.info.name