Skip to content

Commit

Permalink
Fix isort lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
takuti committed Dec 24, 2020
1 parent fd5c0c8 commit 4be791a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pytd/spark.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ def fetch_td_spark_context(
Connection of td-spark
"""
try:
import td_pyspark
from pyspark.conf import SparkConf
from pyspark.sql import SparkSession
import td_pyspark
from td_pyspark import TDSparkContextBuilder
except ImportError:
raise RuntimeError("td_pyspark is not installed")
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@


def setup_package():
from setuptools import setup, find_packages
from setuptools import find_packages, setup

metadata = dict(
name=DISTNAME,
Expand Down

0 comments on commit 4be791a

Please sign in to comment.