We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Consider the following cut-down code:
from vsts.work.v4_1.models.team_context import TeamContext work_client = connection.get_client('vsts.work.v4_1.work_client.WorkClient') _project_id = <GUID> _team_id = <GUID> team = TeamContext(project_id=_project_id, team_id=_team_id) work_client.get_backlogs(team_context=team)
WorkClient methods (and others) that take a TeamContext class do the following:
if team_context is not None: if team_context.projectId: project = team_context.project_id
..which results in the AttributeError in title; it should be checking team_context.project_id instead.
Or am I missing something? Cheers!
Consider the following cut-down code:
WorkClient methods (and others) that take a TeamContext class do the following:
..which results in the AttributeError in title; it should be checking team_context.project_id instead.
Or am I missing something? Cheers!