Skip to content

Commit

Permalink
refactor: in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
doctrino committed Mar 4, 2025
1 parent 6c6c5c2 commit 20144f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cognite/neat/_session/_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
VerifiedRulesTransformer,
)
from cognite.neat._store import NeatGraphStore, NeatRulesStore, NeatStoreManager
from cognite.neat._store._manager import Action
from cognite.neat._utils.upload import UploadResultList

from .exceptions import NeatSessionError, _session_method_wrapper
Expand All @@ -27,8 +28,8 @@ def __init__(
self.rule_store =NeatRulesStore()
self.instances = InstancesState(store_type, storage_path=storage_path)
self.manager = NeatStoreManager(self.instances.store, self.rule_store)
self.last_reference: DMSRules | InformationRules | None = None
self.client = client
self.last_reference: DMSRules | InformationRules | None = None
self.quoted_source_identifiers = False

def change(self, action: Action, description: str | None = None) -> IssueList:
Expand Down

0 comments on commit 20144f7

Please sign in to comment.