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
I think there is a typo in file tableau_tools/tableau_documents/tableau_parameters.py
class TableauParameters(LoggingMethods):
...
def get_parameter_by_name(self, parameter_name: str) -> TableauParameter:
for p in self._parameters:
if self.parameters[p].name == parameter_name:
return p
else:
raise NoMatchFoundException('No parameter named {}'.format(parameter_name))
...
self.parameters[p].name should be self._parameters[p].name
Regards
The text was updated successfully, but these errors were encountered:
I think there is a typo in file tableau_tools/tableau_documents/tableau_parameters.py
self.parameters[p].name should be self._parameters[p].name
Regards
The text was updated successfully, but these errors were encountered: