Skip to content

Commit c936075

Browse files
committed
Follow-up fix
1 parent ec3ac94 commit c936075

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

python/hsfs/core/feature_descriptive_statistics.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
from typing import Mapping, Optional, Union
2020

2121
import humps
22-
from hsfs import util
2322

2423

2524
class FeatureDescriptiveStatistics:
@@ -66,6 +65,7 @@ def __init__(
6665
id: Optional[int] = None,
6766
**kwargs,
6867
):
68+
from hsfs import util
6969
self._id = id
7070
self._feature_type = feature_type
7171
self._feature_name = util.autofix_feature_name(feature_name)
@@ -201,6 +201,7 @@ def to_dict(self):
201201
return _dict
202202

203203
def json(self) -> str:
204+
from hsfs import util
204205
return json.dumps(self, cls=util.FeatureStoreEncoder)
205206

206207
def __str__(self):

0 commit comments

Comments
 (0)