Skip to content
Snippets Groups Projects
Commit 55845199 authored by Christoph Knote's avatar Christoph Knote
Browse files

Rename license file, format .py

parent bbd80004
No related branches found
No related tags found
No related merge requests found
File moved
......@@ -47,6 +47,11 @@ Formats
.. autoenum:: Formats
Variable types
********
.. autoenum:: VariableType
Indices and tables
###################
......
......@@ -113,7 +113,7 @@ class DataStore2110(collections.UserDict):
self.auxvars = auxvars
self.ibvar = ibvar
self.dvars = dvars
def __getitem__(self, s=slice(None)):
return self.data[s]
......@@ -148,9 +148,7 @@ class DataStore2110(collections.UserDict):
# stupid, but at first auxline added, nprimaryData ist a 0-dim array...
ndepData = self.data[ivarvalue]["AUX"][self.nauxvarname]
ndepData = (
int(ndepData) if ndepData.shape == () else int(ndepData[-1])
)
ndepData = int(ndepData) if ndepData.shape == () else int(ndepData[-1])
self._addDeplines(ivarvalue, raw[cur : (cur + ndepData)], ndepData)
......
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