Skip to content

Commit a2f178c

Browse files
authored
Merge pull request #242 from tableau/development
Prep v0.11 release
2 parents d324b28 + abfb2e2 commit a2f178c

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 011 (November 2022)
2+
* Remove extraneous debug print statements
13

24
## 010 (June 2022)
35
* Add service/schema attributes
@@ -6,7 +8,7 @@
68
* Add attribute for hidden field
79

810
## 09 (December 2021)
9-
* Pypi upgraded to Python3
11+
* PyPI upgraded to Python3
1012

1113
## 08 (October 2021)
1214
* See dashboards in a workbook

samples/preserve-namespaces/preserve-namespaces.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def assertContainsUserNamespace(filename):
1616
lineCount += 1
1717
found = doc_beginning_excerpt.rfind("xmlns:user=")
1818
print(doc_beginning_excerpt[found:found+10])
19-
assert(found >= 0)
19+
assert (found >= 0)
2020

2121

2222
############################################################

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='tableaudocumentapi',
5-
version='0.10',
5+
version='0.11',
66
author='Tableau',
77
author_email='github@tableau.com',
88
url='https://github.com/tableau/document-api-python',

tableaudocumentapi/field.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ def _initialize_from_metadata_xml(self, xmldata):
7070
self._apply_attribute(xmldata, field_name,
7171
lambda x: getattr(xmldata.find('.//{}'.format(metadata_name)), 'text', None),
7272
read_name=metadata_name)
73-
print(metadata_name, field_name)
7473
self.apply_metadata(xmldata)
7574

7675
@classmethod

0 commit comments

Comments
 (0)