Show More
@@ -18,7 +18,6 b' Authors:' | |||
|
18 | 18 | #----------------------------------------------------------------------------- |
|
19 | 19 | |
|
20 | 20 | import io |
|
21 | import locale | |
|
22 | 21 | import os |
|
23 | 22 | import glob |
|
24 | 23 | import shutil |
@@ -33,8 +32,8 b' from IPython.utils import tz' | |||
|
33 | 32 | from IPython.html.utils import is_hidden, to_os_path |
|
34 | 33 | |
|
35 | 34 | def sort_key(item): |
|
36 |
"""Case-insensitive |
|
|
37 |
return |
|
|
35 | """Case-insensitive sorting.""" | |
|
36 | return item['name'].lower() | |
|
38 | 37 | |
|
39 | 38 | #----------------------------------------------------------------------------- |
|
40 | 39 | # Classes |
General Comments 0
You need to be logged in to leave comments.
Login now