Skip to content

Commit

Permalink
Silence mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
sfermigier committed May 2, 2019
1 parent ceac512 commit 031874a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion olapy/core/mdx/executor/execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def load_tables(self, sep):

else:
# force reimport CubeLoader every instance call (MdxEngine or SparkMdxEngine)
from ..executor import CubeLoader
from . import CubeLoader

cube_loader = CubeLoader(cubes_folder_path, sep)

Expand Down
2 changes: 1 addition & 1 deletion olapy/core/mdx/executor/spark/cube_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from pyspark.sql import DataFrame, SparkSession

from ..cube_loader import CubeLoader
from olapy.core.mdx.executor.cube_loader import CubeLoader

spark = SparkSession.builder.appName("olapy").getOrCreate()

Expand Down
2 changes: 1 addition & 1 deletion olapy/core/mdx/executor/spark/execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from pyspark.sql import DataFrame
from pyspark.sql.functions import lit

from ..execute import MdxEngine
from olapy.core.mdx.executor.execute import MdxEngine


class SparkMdxEngine(MdxEngine):
Expand Down

0 comments on commit 031874a

Please sign in to comment.