Skip to content

Commit 7d0fd93

Browse files
committed
* linting cleanup
1 parent d60a8c7 commit 7d0fd93

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

edit.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Generates bookmark edit UI.
33
"""
4-
from index import header0, do_add, list_tags, footer, edit_bmarks
4+
from index import header0, list_tags, footer, edit_bmarks
55

66

77
def do_edit():

idx.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1+
"""
2+
Generates toplevel index.
3+
"""
14
from os import chdir, path
25

36
# Change working directory so relative paths (and template lookup) work again
47
chdir(path.dirname(__file__))
58

6-
import bottle # noqa: C0413
9+
import bottle # pylint: disable=C0413
710

811
application = bottle.default_app()

0 commit comments

Comments
 (0)