Skip to content

Commit

Permalink
Fix circular dependency error on import hsfs
Browse files Browse the repository at this point in the history
  • Loading branch information
aversey committed Jul 5, 2024
1 parent bee5eea commit 4d8c9be
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion python/hopsworks/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
from __future__ import annotations

import json
from typing import TYPE_CHECKING

import humps
from hopsworks import client, constants, util
Expand All @@ -29,7 +30,10 @@
kafka_api,
opensearch_api,
)
from hsfs import feature_store


if TYPE_CHECKING:
from hsfs import feature_store


class Project:
Expand Down

0 comments on commit 4d8c9be

Please sign in to comment.