Skip to content

Commit

Permalink
Fixed the imports to reflect current changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryant Howell committed Dec 8, 2019
1 parent 93b6440 commit bee682e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions tabcmd.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
import json
import urllib.request, urllib.parse, urllib.error
import xml.etree.ElementTree as ET
import os

from .tableau_rest_api.tableau_rest_api_connection import *
from tableau_tools.tableau_repository import *
from tableau_tools.tableau_http import *
from tableau_tools.tableau_base import TableauBase
from .tableau_http import *
from .logger import Logger
from .logging_methods import LoggingMethods


class Tabcmd(TableauBase):
class Tabcmd(LoggingMethods):
def __init__(self, tabcmd_folder, tableau_server_url, username, password, site='default',
repository_password=None, tabcmd_config_location=None):
super(self.__class__, self).__init__()
Expand Down

0 comments on commit bee682e

Please sign in to comment.