Skip to content

Commit

Permalink
Fixes docs lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mrharpo committed Sep 18, 2024
1 parent 21a1dc6 commit b9f49d8
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions docs/example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"source": [
"import logging\n",
"\n",
"logging.getLogger(\"requests.packages.urllib3\").setLevel(logging.DEBUG)"
"logging.getLogger('requests.packages.urllib3').setLevel(logging.DEBUG)"
]
},
{
Expand Down Expand Up @@ -69,7 +69,8 @@
"outputs": [],
"source": [
"from ci_config import *\n",
"from sonyci import SonyCi, Config\n",
"\n",
"from sonyci import SonyCi\n",
"\n",
"ci = SonyCi(\n",
" username=username,\n",
Expand Down Expand Up @@ -115,7 +116,6 @@
"source": [
"from requests_oauth2client.tokens import BearerTokenSerializer\n",
"\n",
"\n",
"with open('../.token') as f:\n",
" token = BearerTokenSerializer().loads(f.read())"
]
Expand All @@ -128,7 +128,6 @@
"source": [
"from sonyci.sonyci import SonyCi\n",
"\n",
"\n",
"ci = SonyCi(t=token)"
]
},
Expand Down Expand Up @@ -157,8 +156,8 @@
"metadata": {},
"outputs": [],
"source": [
"ci = SonyCi.load_from_toml(\"../ci.toml\")\n",
"ci(\"workspaces\")"
"ci = SonyCi.load_from_toml('../ci.toml')\n",
"ci('workspaces')"
]
}
],
Expand Down

0 comments on commit b9f49d8

Please sign in to comment.