From f498d36b60f6512c71b7df0bd35f67cc196b995e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Saugat=20Pachhai=20=28=E0=A4=B8=E0=A5=8C=E0=A4=97=E0=A4=BE?= =?UTF-8?q?=E0=A4=A4=29?= Date: Wed, 23 Aug 2023 16:13:58 +0545 Subject: [PATCH] fix pylint error --- dvc_hdfs/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dvc_hdfs/__init__.py b/dvc_hdfs/__init__.py index 132cf50..e46db9a 100644 --- a/dvc_hdfs/__init__.py +++ b/dvc_hdfs/__init__.py @@ -4,8 +4,9 @@ import sys import threading +from dvc.utils.objects import cached_property from dvc_objects.fs.base import FileSystem -from funcy import cached_property, wrap_prop +from funcy import wrap_prop CHECKSUM_REGEX = re.compile(r".*\t.*\t(?P.*)")