From fbe0f74395cb5f7ff474e9e479e3f203c07f8cad Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 14 Apr 2022 20:45:23 +0000 Subject: [PATCH] export: Drop using functools Signed-off-by: Michael Tremer --- src/python/location/export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/location/export.py b/src/python/location/export.py index 13c0540..054e494 100644 --- a/src/python/location/export.py +++ b/src/python/location/export.py @@ -84,7 +84,7 @@ class OutputWriter(object): return "%sv%s" % (self.name, families.get(self.family, "?")) - @functools.cached_property + @property def filename(self): if self.directory: return os.path.join(self.directory, "%s.%s" % (self.tag, self.suffix)) -- 2.39.5