@@ -35,11 +35,11 @@ def create_dashboard(self, dashboard, team_context):
3535 project = None
3636 team = None
3737 if team_context is not None :
38- if team_context .project_Id :
38+ if team_context .project_id :
3939 project = team_context .project_id
4040 else :
4141 project = team_context .project
42- if team_context .team_Id :
42+ if team_context .team_id :
4343 team = team_context .team_id
4444 else :
4545 team = team_context .team
@@ -66,11 +66,11 @@ def delete_dashboard(self, team_context, dashboard_id):
6666 project = None
6767 team = None
6868 if team_context is not None :
69- if team_context .project_Id :
69+ if team_context .project_id :
7070 project = team_context .project_id
7171 else :
7272 project = team_context .project
73- if team_context .team_Id :
73+ if team_context .team_id :
7474 team = team_context .team_id
7575 else :
7676 team = team_context .team
@@ -97,11 +97,11 @@ def get_dashboard(self, team_context, dashboard_id):
9797 project = None
9898 team = None
9999 if team_context is not None :
100- if team_context .project_Id :
100+ if team_context .project_id :
101101 project = team_context .project_id
102102 else :
103103 project = team_context .project
104- if team_context .team_Id :
104+ if team_context .team_id :
105105 team = team_context .team_id
106106 else :
107107 team = team_context .team
@@ -128,11 +128,11 @@ def get_dashboards(self, team_context):
128128 project = None
129129 team = None
130130 if team_context is not None :
131- if team_context .project_Id :
131+ if team_context .project_id :
132132 project = team_context .project_id
133133 else :
134134 project = team_context .project
135- if team_context .team_Id :
135+ if team_context .team_id :
136136 team = team_context .team_id
137137 else :
138138 team = team_context .team
@@ -159,11 +159,11 @@ def replace_dashboard(self, dashboard, team_context, dashboard_id):
159159 project = None
160160 team = None
161161 if team_context is not None :
162- if team_context .project_Id :
162+ if team_context .project_id :
163163 project = team_context .project_id
164164 else :
165165 project = team_context .project
166- if team_context .team_Id :
166+ if team_context .team_id :
167167 team = team_context .team_id
168168 else :
169169 team = team_context .team
@@ -193,11 +193,11 @@ def replace_dashboards(self, group, team_context):
193193 project = None
194194 team = None
195195 if team_context is not None :
196- if team_context .project_Id :
196+ if team_context .project_id :
197197 project = team_context .project_id
198198 else :
199199 project = team_context .project
200- if team_context .team_Id :
200+ if team_context .team_id :
201201 team = team_context .team_id
202202 else :
203203 team = team_context .team
@@ -226,11 +226,11 @@ def create_widget(self, widget, team_context, dashboard_id):
226226 project = None
227227 team = None
228228 if team_context is not None :
229- if team_context .project_Id :
229+ if team_context .project_id :
230230 project = team_context .project_id
231231 else :
232232 project = team_context .project
233- if team_context .team_Id :
233+ if team_context .team_id :
234234 team = team_context .team_id
235235 else :
236236 team = team_context .team
@@ -261,11 +261,11 @@ def delete_widget(self, team_context, dashboard_id, widget_id):
261261 project = None
262262 team = None
263263 if team_context is not None :
264- if team_context .project_Id :
264+ if team_context .project_id :
265265 project = team_context .project_id
266266 else :
267267 project = team_context .project
268- if team_context .team_Id :
268+ if team_context .team_id :
269269 team = team_context .team_id
270270 else :
271271 team = team_context .team
@@ -296,11 +296,11 @@ def get_widget(self, team_context, dashboard_id, widget_id):
296296 project = None
297297 team = None
298298 if team_context is not None :
299- if team_context .project_Id :
299+ if team_context .project_id :
300300 project = team_context .project_id
301301 else :
302302 project = team_context .project
303- if team_context .team_Id :
303+ if team_context .team_id :
304304 team = team_context .team_id
305305 else :
306306 team = team_context .team
@@ -332,11 +332,11 @@ def replace_widget(self, widget, team_context, dashboard_id, widget_id):
332332 project = None
333333 team = None
334334 if team_context is not None :
335- if team_context .project_Id :
335+ if team_context .project_id :
336336 project = team_context .project_id
337337 else :
338338 project = team_context .project
339- if team_context .team_Id :
339+ if team_context .team_id :
340340 team = team_context .team_id
341341 else :
342342 team = team_context .team
@@ -370,11 +370,11 @@ def update_widget(self, widget, team_context, dashboard_id, widget_id):
370370 project = None
371371 team = None
372372 if team_context is not None :
373- if team_context .project_Id :
373+ if team_context .project_id :
374374 project = team_context .project_id
375375 else :
376376 project = team_context .project
377- if team_context .team_Id :
377+ if team_context .team_id :
378378 team = team_context .team_id
379379 else :
380380 team = team_context .team
0 commit comments