You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Throughout the class, the second argument of .findall is always self.rest.ns_map, except for this one line.
From my understanding of the code, self.rest is an iteration of the TableauRestApiBase class, which does have an ns_map variable. But WorkbookMethods itself does not have an ns_map variable, which I think is what is triggering this error.
Am I missing something? When I change that line to self.rest.ns_map, the error stops coming up (although there are other subsequent errors I'm debugging).
The text was updated successfully, but these errors were encountered:
I'm getting the following error when trying to use the tool:
AttributeError: 'WorkbookMethods' object has no attribute 'ns_map'
The error is caused by the following line:
tableau_tools/tableau_rest_api/methods/workbook.py
Line 373 in 60881a9
Throughout the class, the second argument of
.findall
is alwaysself.rest.ns_map
, except for this one line.From my understanding of the code,
self.rest
is an iteration of theTableauRestApiBase
class, which does have anns_map
variable. ButWorkbookMethods
itself does not have anns_map
variable, which I think is what is triggering this error.Am I missing something? When I change that line to
self.rest.ns_map
, the error stops coming up (although there are other subsequent errors I'm debugging).The text was updated successfully, but these errors were encountered: