From: Michael Tremer Date: Thu, 14 Apr 2022 20:45:23 +0000 (+0000) Subject: export: Drop using functools X-Git-Tag: 0.9.14~19 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fbe0f74395cb5f7ff474e9e479e3f203c07f8cad;p=location%2Flibloc.git export: Drop using functools Signed-off-by: Michael Tremer --- 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))