modified initialization method of GenericDataBase class
This commit is contained in:
parent
1a4d306a40
commit
a4f948fd76
@ -5,9 +5,19 @@
|
|||||||
# EGELADOS structure.
|
# EGELADOS structure.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
import os
|
||||||
|
|
||||||
|
|
||||||
class GenericDataBase(object):
|
class GenericDataBase(object):
|
||||||
def __init__(self, root=None, kwargs**):
|
'''
|
||||||
pass
|
GenericDataBase type holds all information about the current data-
|
||||||
|
base working on.
|
||||||
|
'''
|
||||||
|
def __init__(self, stexp=None, **kwargs):
|
||||||
|
structExpression = os.path.split(stexp)
|
||||||
|
self.dataBaseDict = kwargs
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class SeiscompDataStructure(GenericDataBase):
|
class SeiscompDataStructure(GenericDataBase):
|
||||||
|
Loading…
Reference in New Issue
Block a user