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

ENH: use meaningful default for access

parent c5ff8fc7
No related branches found
No related tags found
No related merge requests found
...@@ -66,11 +66,14 @@ def get_entity(name): ...@@ -66,11 +66,14 @@ def get_entity(name):
class FileGuide(object): class FileGuide(object):
def access(path): def access(self, path):
""" should be replaced by a function that adds """ should be replaced by a function that adds
a prefix to paths to allow to access caosdb files locally""" a prefix to paths to allow to access caosdb files locally
raise NotImplementedError() This default just returns the unchanged path.
"""
return path
fileguide = FileGuide() fileguide = FileGuide()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment