Skip to content

Commit 60145d9

Browse files
committed
🎨 Update format with new Black
1 parent 4c3dd39 commit 60145d9

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

docs_src/commands/callback/tutorial004.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def callback():
99
Manage users CLI app.
1010
1111
Use it with the create command.
12-
12+
1313
A new user with the given NAME will be created.
1414
"""
1515

tests/test_completion/test_completion_install.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,9 @@ def test_completion_install_zsh():
9999

100100
def test_completion_install_fish():
101101
script_path = Path(mod.__file__)
102-
completion_path: Path = Path.home() / f".config/fish/completions/{script_path.name}.fish"
102+
completion_path: Path = (
103+
Path.home() / f".config/fish/completions/{script_path.name}.fish"
104+
)
103105
result = subprocess.run(
104106
["coverage", "run", mod.__file__, "--install-completion", "fish"],
105107
stdout=subprocess.PIPE,
@@ -124,7 +126,9 @@ def test_completion_install_fish():
124126

125127

126128
def test_completion_install_powershell():
127-
completion_path: Path = Path.home() / f".config/powershell/Microsoft.PowerShell_profile.ps1"
129+
completion_path: Path = (
130+
Path.home() / f".config/powershell/Microsoft.PowerShell_profile.ps1"
131+
)
128132
completion_path_bytes = f"{completion_path}\n".encode("windows-1252")
129133
text = ""
130134
if completion_path.is_file(): # pragma: nocover

0 commit comments

Comments
 (0)