Skip to content
Snippets Groups Projects
Commit 5473a0a9 authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

DEP: depricated LocalStorageIdentifiableAdapter

parent c7885044
No related branches found
No related tags found
1 merge request!160STY: styling
Pipeline #47158 passed
......@@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
as parent are accepted.
### Deprecated ###
- LocalStorageIdentifiableAdapter
### Removed ###
......
......@@ -26,6 +26,7 @@
from __future__ import annotations
import logging
import warnings
from abc import ABCMeta, abstractmethod
from datetime import datetime
from typing import Any
......@@ -316,6 +317,8 @@ class LocalStorageIdentifiableAdapter(IdentifiableAdapter):
"""
def __init__(self):
warnings.warn(DeprecationWarning(
"This class is depricated. Please use the CaosDBIdentifiableAdapter."))
self._registered_identifiables = dict()
self._records = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment