Skip to content
Snippets Groups Projects
Commit f1e40b9b authored by lukas leufen's avatar lukas leufen
Browse files

minor design changed to fulfill pep8

parent 71bfde97
No related branches found
No related tags found
2 merge requests!17update to v0.4.0,!15new feat split subsets
......@@ -3,7 +3,6 @@ __date__ = '2019-11-22'
from typing import Any, List, Tuple
from abc import ABC
......@@ -80,6 +79,13 @@ class AbstractDataStore(ABC):
"""
pass
def list_all_names(self) -> None:
"""
List all names available in the data store.
:return: all names
"""
pass
class DataStoreByVariable(AbstractDataStore):
......@@ -327,5 +333,3 @@ class DataStoreByScope(AbstractDataStore):
if name not in names:
names.append(name)
return sorted(names)
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