Skip to content

Commit

Permalink
linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fabi1cazenave committed Feb 11, 2024
1 parent d3cdc99 commit fb3529e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kalamine/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import click

from .help import user_guide, create_layout
from .help import create_layout, user_guide
from .layout import KeyboardLayout, load_layout
from .server import keyboard_server

Expand Down
2 changes: 1 addition & 1 deletion kalamine/help.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def user_guide() -> str:
"""Create a user guide with a sample layout description."""

header = MARKDOWN_HEADER.replace(
"KALAMINE_LAYOUT", draw_layout(geometry="ANSI", altgr="true")
"KALAMINE_LAYOUT", draw_layout(geometry="ANSI", altgr=True)
)
return header + "\n" + "\n".join(core_guide())

Expand Down

0 comments on commit fb3529e

Please sign in to comment.