We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3b2af5 commit 20a2005Copy full SHA for 20a2005
kobodl/kobo.py
@@ -55,9 +55,7 @@ class Kobo:
55
def __init__(self, user: User):
56
self.InitializationSettings = {}
57
self.Session = requests.session()
58
- self.Session.headers.update({
59
- "User-Agent": Kobo.UserAgent
60
- })
+ self.Session.headers.update({"User-Agent": Kobo.UserAgent})
61
self.user = user
62
63
# PRIVATE METHODS
tox.ini
@@ -22,5 +22,8 @@ commands =
22
[testenv:buildcli]
23
deps =
24
pyinstaller
25
+ # a temporary pin for Jinja/Sphinx
26
+ # because MarkupSafe 2.1.0 is a breaking change
27
+ MarkupSafe==2.0.1
28
commands =
29
pyinstaller --onefile kobodl/__main__.py {posargs}
0 commit comments