Skip to content
Snippets Groups Projects
Commit cca4295d authored by Paul McCarthy's avatar Paul McCarthy
Browse files

Stub read function returns default value

parent c5c9f750
No related branches found
No related tags found
No related merge requests found
...@@ -81,8 +81,8 @@ def initialise(*args, **kwargs): ...@@ -81,8 +81,8 @@ def initialise(*args, **kwargs):
# These are all overwritten by # These are all overwritten by
# the initialise function. # the initialise function.
def read(*args, **kwargs): def read(name, default=None):
pass return default
def write(*args, **kwargs): def write(*args, **kwargs):
pass pass
def delete(*args, **kwargs): def delete(*args, **kwargs):
......
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