Skip to content
Snippets Groups Projects
Commit 083f2687 authored by Ivana CHINGOVSKA's avatar Ivana CHINGOVSKA
Browse files

added is_real() method into the File wrapper

parent ce437b55
No related branches found
No related tags found
No related merge requests found
......@@ -44,6 +44,10 @@ class File(FileBase):
return self.__f.client_id
get_client_id.__doc__ = FileBase.get_client_id.__doc__
def is_real(self):
return self.__f.is_real()
is_real.__doc__ = FileBase.is_real.__doc__
class Database(DatabaseBase):
__doc__ = long_description
......
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