Skip to content

Commit

Permalink
Remove print()
Browse files Browse the repository at this point in the history
  • Loading branch information
argenisleon committed Nov 13, 2019
1 parent 1c8f076 commit 9fd8055
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions optimus/io/jdbc.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def __init__(self, host, database, user, password, port=None, driver=None, schem
self.user = user
self.password = password
self.schema = schema
print(self.url)
logger.print(self.url)

def tables(self, schema=None, database=None, limit=None):
"""
Expand Down Expand Up @@ -148,7 +148,6 @@ def execute(self, query, limit=None):

logger.print(query)
logger.print(self.url)
print(self.url)

conf = Spark.instance.spark.read \
.format(
Expand Down

0 comments on commit 9fd8055

Please sign in to comment.