Skip to content
Snippets Groups Projects

DOC: Fix and extend documentation on inheritance

Merged Florian Spreckelsen requested to merge f-doc-inheritance into dev
All threads resolved!
4 files
+ 20
9
Compare changes
  • Side-by-side
  • Inline

Files

@@ -41,7 +41,11 @@ from caosdb.exceptions import (CaosDBException, HTTPClientError,
HTTPResourceNotFoundError,
HTTPServerError,
HTTPURITooLongError)
from caosdb.version import version
try:
from caosdb.version import version
except:
version = "uninstalled"
from pkg_resources import resource_filename
from .interface import CaosDBHTTPResponse, CaosDBServerConnection
Loading