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

better __init__s

parent bc968fd5
No related branches found
No related tags found
Loading
Checking pipeline status
from linkahead.__init__ import *
from linkahead import *
from warnings import warn
warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.__init__`. Using the"
warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead`. Using the"
" old name, starting with caosdb, is deprecated."), DeprecationWarning)
from linkahead.common.__init__ import *
from linkahead.common import *
from warnings import warn
warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.common.__init__`. Using the"
warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.common`. Using the"
" old name, starting with caosdb, is deprecated."), DeprecationWarning)
from linkahead.connection.__init__ import *
from linkahead.connection import *
from warnings import warn
warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.connection.__init__`. Using the"
warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.connection`. Using the"
" old name, starting with caosdb, is deprecated."), DeprecationWarning)
from linkahead.connection.authentication.__init__ import *
from linkahead.connection.authentication import *
from warnings import warn
warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.connection.authentication.__init__`. Using the"
warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.connection.authentication`. Using the"
" old name, starting with caosdb, is deprecated."), DeprecationWarning)
from linkahead.utils.__init__ import *
from linkahead.utils import *
from warnings import warn
warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.utils.__init__`. Using the"
warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.utils`. Using the"
" old name, starting with caosdb, is deprecated."), DeprecationWarning)
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