Skip to content

Commit

Permalink
[autofix] Format Python (#827)
Browse files Browse the repository at this point in the history
* [autofix] Format Python

* Update version.py

---------

Co-authored-by: kdeldycke <kdeldycke@users.noreply.github.com>
Co-authored-by: Kevin Deldycke <kevin@deldycke.com>
  • Loading branch information
3 people authored Jan 5, 2024
1 parent 6b865ec commit bdb3f85
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions click_extra/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,18 @@ def __init__(
# Field style ovverrides.
message_style: IStyle | None = None,
module_style: IStyle | None = None,
module_name_style: IStyle | None = default_theme.invoked_command, # type: ignore[has-type]
module_name_style: IStyle
| None = default_theme.invoked_command, # type: ignore[has-type]
module_file_style: IStyle | None = None,
module_version_style: IStyle | None = Style(fg="green"),
package_name_style: IStyle | None = default_theme.invoked_command, # type: ignore[has-type]
package_name_style: IStyle
| None = default_theme.invoked_command, # type: ignore[has-type]
package_version_style: IStyle | None = Style(fg="green"),
exec_name_style: IStyle | None = default_theme.invoked_command, # type: ignore[has-type]
exec_name_style: IStyle
| None = default_theme.invoked_command, # type: ignore[has-type]
version_style: IStyle | None = Style(fg="green"),
prog_name_style: IStyle | None = default_theme.invoked_command, # type: ignore[has-type]
prog_name_style: IStyle
| None = default_theme.invoked_command, # type: ignore[has-type]
env_info_style: IStyle | None = Style(fg="bright_black"),
is_flag=True,
expose_value=False,
Expand Down

0 comments on commit bdb3f85

Please sign in to comment.