Skip to content

Commit 4a9415a

Browse files
committed
lint
1 parent b19f2fd commit 4a9415a

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOGS.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Change Logs
22
===========
33

4+
0.3.2
5+
+++++
6+
7+
* :pr:`101`: fix as_tensor in onnx_text_plot_tree
8+
49
0.3.1
510
+++++
611

onnx_array_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
APIs to create ONNX Graphs.
33
"""
44

5-
__version__ = "0.3.1"
5+
__version__ = "0.3.2"
66
__author__ = "Xavier Dupré"

onnx_array_api/profiling.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -437,8 +437,7 @@ def add_rows(rows, d):
437437
stall = 0
438438
if verbose and fLOG is not None:
439439
fLOG(
440-
"[pstats] %s=%r"
441-
% (clean_text(k[0].replace("\\", "/"), *k[1:]), v)
440+
"[pstats] %s=%r" % (clean_text(k[0].replace("\\", "/"), *k[1:]), v)
442441
)
443442
if len(v) < 5:
444443
continue

0 commit comments

Comments
 (0)