Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
pyromaths
pyromaths
Commits
6453ac68
Commit
6453ac68
authored
May 24, 2018
by
Louis
Browse files
[cli] Le tri est fait sans tenir compte de la casse
parent
8fd02239
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/pyromaths/cli/__main__.py
View file @
6453ac68
...
...
@@ -148,7 +148,7 @@ def do_generate(options):
def
do_ls
(
options
):
# pylint: disable=unused-argument
"""Perform the `ls` command."""
tests
=
TestPerformer
()
for
name
in
sorted
(
tests
.
iter_names
()):
for
name
in
sorted
(
tests
.
iter_names
()
,
key
=
str
.
lower
):
print
(
name
)
# pylint: disable=superfluous-parens
COMMANDS
=
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment