Skip to content

Commit 14a717c

Browse files
committed
Fix lint pipeline failures
Signed-off-by: Timo Stripf <timo.stripf@emmtrix.com>
1 parent 7351b84 commit 14a717c

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

backends/tvm/backend.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ def _native_ops_only(model):
2929
default=1,
3030
)
3131
convert_map = _get_convert_map(opset)
32-
unsupported = {n.op_type for n in model.graph.node if n.op_type not in convert_map}
32+
unsupported = {
33+
n.op_type for n in model.graph.node if n.op_type not in convert_map
34+
}
3335
return sorted(unsupported)
3436
except (ImportError, AttributeError):
3537
return []

website-generator/resources/src/bar_chart.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
barChartDatasets[1].data.push(trend[lastIdx].failed);
3333
barChartDatasets[2].data.push(trend[lastIdx].skipped || 0);
3434

35-
new Chart(barChart, {
35+
barChart._chart = new Chart(barChart, {
3636
type: 'bar',
3737
data: {
3838
labels: barChartLabels,

website-generator/resources/src/circle_chart.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
}]
2424
};
2525

26-
new Chart(circleChart, {
26+
circleChart._chart = new Chart(circleChart, {
2727
type: 'doughnut',
2828
data: chartData,
2929
options: {

website-generator/resources/src/line_chart.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
}]
5252
};
5353

54-
new Chart(lineTrend, {
54+
lineTrend._chart = new Chart(lineTrend, {
5555
type: 'line',
5656
data: lineChartData,
5757
options: {

0 commit comments

Comments
 (0)