Skip to content

Commit da953b9

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 6975399 commit da953b9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/explanation/2024_03_17_community_talk.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
"# Assumption: I want to optimize calling this many times on data similar to that above\n",
116116
"def run_lda(x, y):\n",
117117
" lda = LinearDiscriminantAnalysis()\n",
118-
" return lda.fit(x, y).transform(x)\n"
118+
" return lda.fit(x, y).transform(x)"
119119
]
120120
},
121121
{
@@ -1441,7 +1441,7 @@
14411441
}
14421442
],
14431443
"source": [
1444-
"print(\"Program generation to Python source is temporarily disabled in this tutorial example.\")\n"
1444+
"print(\"Program generation to Python source is temporarily disabled in this tutorial example.\")"
14451445
]
14461446
},
14471447
{

docs/tutorials/getting-started.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@
409409
],
410410
"source": [
411411
"egraph.run(10)\n",
412-
"egraph.extract(res)\n"
412+
"egraph.extract(res)"
413413
]
414414
},
415415
{
@@ -1098,7 +1098,7 @@
10981098
"# Create an example which should equal the kronecker product of A and B\n",
10991099
"ex1 = kron(Matrix.identity(n), B) @ kron(A, Matrix.identity(m))\n",
11001100
"egraph.run(20)\n",
1101-
"egraph.extract(ex1)\n"
1101+
"egraph.extract(ex1)"
11021102
]
11031103
},
11041104
{
@@ -1212,7 +1212,7 @@
12121212
"source": [
12131213
"ex2 = kron(Matrix.identity(p), C) @ kron(A, Matrix.identity(m))\n",
12141214
"egraph.run(20)\n",
1215-
"egraph.extract(ex2)\n"
1215+
"egraph.extract(ex2)"
12161216
]
12171217
},
12181218
{

0 commit comments

Comments
 (0)