Skip to content

Commit c688982

Browse files
committed
remove backslashes
1 parent 3c857cf commit c688982

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Examples.ipynb

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -474,9 +474,9 @@
474474
"%%altair\n",
475475
"data = altair.X(\"cty\", bin=altair.Bin(step=2))\n",
476476
"(\n",
477-
" altair \\\n",
478-
" .Chart(mpg) \\\n",
479-
" .mark_bar() \\\n",
477+
" altair\n",
478+
" .Chart(mpg)\n",
479+
" .mark_bar()\n",
480480
" .encode(data, y=\"count()\")\n",
481481
")"
482482
]
@@ -1161,13 +1161,13 @@
11611161
"outputs": [],
11621162
"source": [
11631163
"%%altair \n",
1164-
"(altair \\\n",
1165-
" .Chart(mpg) \\\n",
1166-
" .mark_circle() \\\n",
1167-
" .encode(x=\"displ\", y=\"hwy\",) \\\n",
1164+
"(altair\n",
1165+
" .Chart(mpg)\n",
1166+
" .mark_circle()\n",
1167+
" .encode(x=\"displ\", y=\"hwy\",)\n",
11681168
" .properties(\n",
11691169
" width=100, height=150\n",
1170-
" ) \\\n",
1170+
" )\n",
11711171
" .facet(column=\"cyl\", row=\"drv\")\n",
11721172
")"
11731173
]

0 commit comments

Comments
 (0)