Skip to content

Commit 875ddf1

Browse files
author
Bryant Howell
authored
Merge pull request #78 from bryantbhowell/5.0.7
5.0.7
2 parents f216a5e + e44953e commit 875ddf1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
setup(
44
name='tableau_tools',
55
python_requires='>=3.6',
6-
version='5.0.6',
6+
version='5.0.7',
77
packages=['tableau_tools', 'tableau_tools.tableau_rest_api', 'tableau_tools.tableau_documents',
88
'tableau_tools.examples', 'tableau_tools.tableau_rest_api.methods'],
99
url='https://github.com/bryantbhowell/tableau_tools',

tableau_rest_api/methods/rest_api_base.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1162,7 +1162,7 @@ def __init__(self, server: str, username: str, password: str, site_content_url:
11621162
TableauRestApiBase.__init__(self, server=server, username=username, password=password,
11631163
site_content_url=site_content_url)
11641164
self.set_tableau_server_version('10.4')
1165-
self.url_filters = UrlFilter27()
1165+
self.url_filters = UrlFilter27
11661166

11671167
class TableauRestApiBase28(TableauRestApiBase27):
11681168
def __init__(self, server: str, username: str, password: str, site_content_url: Optional[str] = ""):
@@ -1189,7 +1189,7 @@ def __init__(self, server: str, username: str, password: str, site_content_url:
11891189
TableauRestApiBase.__init__(self, server=server, username=username, password=password,
11901190
site_content_url=site_content_url)
11911191
self.set_tableau_server_version('2018.2')
1192-
self.url_filters = UrlFilter31()
1192+
self.url_filters = UrlFilter31
11931193

11941194
class TableauRestApiBase32(TableauRestApiBase31):
11951195
def __init__(self, server: str, username: str, password: str, site_content_url: Optional[str] = ""):
@@ -1202,7 +1202,7 @@ def __init__(self, server: str, username: str, password: str, site_content_url:
12021202
TableauRestApiBase.__init__(self, server=server, username=username, password=password,
12031203
site_content_url=site_content_url)
12041204
self.set_tableau_server_version('2019.1')
1205-
self.url_filters = UrlFilter33()
1205+
self.url_filters = UrlFilter33
12061206

12071207
def get_published_project_object(self, project_name_or_luid: str,
12081208
project_xml_obj: Optional[ET.Element] = None) -> Project33:

0 commit comments

Comments
 (0)