Python : Fix wrong casing

This commit is contained in:
Magne Sjaastad 2019-07-30 10:35:46 +02:00
parent acde63a7e0
commit a20c56d21d

View File

@ -192,7 +192,7 @@ class Commands:
def exportWellPaths(self, wellPaths=[], mdStepSize=5.0):
if isinstance(wellPaths, str):
wellPaths = [wellpaths]
wellPaths = [wellPaths]
return self.__execute(exportWellPaths=Cmd.ExportWellPathRequest(wellPathNames=wellPaths, mdStepSize=mdStepSize))
def exportVisibleCells(self, caseId, viewName, exportKeyword='FLUXNUM', visibleActiveCellsValue=1, hiddenActiveCellsValue=0, inactiveCellsValue=0):