Skip to content
Snippets Groups Projects
Commit 1bdb3803 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[driver] Improve files() documentation

parent 4794cd3d
No related branches found
No related tags found
1 merge request!10Issue 11
...@@ -226,10 +226,11 @@ class Interface(object): ...@@ -226,10 +226,11 @@ class Interface(object):
def files(self): def files(self):
'''Returns a python iterable with all auxiliary files needed. '''Returns a python iterable with all auxiliary files needed.
The values should be take w.r.t. where the python file that declares the The paths listed by this method should correspond to full paths (not
database is sitting at. relative ones) w.r.t. the database package implementing it. This is
normally achieved by using ``pkg_resources.resource_filename()``.
''' '''
return return []
@abc.abstractmethod @abc.abstractmethod
......
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