From bee682eaa53d4be390c4045e1adadc9db15666a3 Mon Sep 17 00:00:00 2001 From: Bryant Howell Date: Sun, 8 Dec 2019 11:55:21 -0600 Subject: [PATCH] Fixed the imports to reflect current changes. --- tabcmd.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tabcmd.py b/tabcmd.py index 06dd0db..acb7467 100644 --- a/tabcmd.py +++ b/tabcmd.py @@ -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__()