Commit 91f0169d authored by mouadh's avatar mouadh

change non pythonic function name

parent bd5982d3
...@@ -12,7 +12,7 @@ class XmlaExecuteTools(): ...@@ -12,7 +12,7 @@ class XmlaExecuteTools():
def __init__(self, executer): def __init__(self, executer):
self.executer = executer self.executer = executer
def split_dataFrame(self, mdx_execution_result): def split_dataframe(self, mdx_execution_result):
""" """
Split DataFrame into multiple ones by dimension Split DataFrame into multiple ones by dimension
example: example:
...@@ -248,7 +248,7 @@ class XmlaExecuteTools(): ...@@ -248,7 +248,7 @@ class XmlaExecuteTools():
""" """
# TODO must be OPTIMIZED every time!!!!! # TODO must be OPTIMIZED every time!!!!!
dfs = self.split_dataFrame(mdx_execution_result) dfs = self.split_dataframe(mdx_execution_result)
if mdx_execution_result['columns_desc'][ if mdx_execution_result['columns_desc'][
'rows'] and mdx_execution_result['columns_desc']['columns']: 'rows'] and mdx_execution_result['columns_desc']['columns']:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment