Skip to content

Commit 96592e3

Browse files
committed
format with black
1 parent 8455133 commit 96592e3

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

sdk/identity/azure-identity/azure/identity/_credentials/azure_cli.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ def _run_command(command):
108108
"stderr": subprocess.STDOUT,
109109
"cwd": working_directory,
110110
"universal_newlines": True,
111-
"env": dict(os.environ, AZURE_CORE_NO_COLOR="true")
112-
}
111+
"env": dict(os.environ, AZURE_CORE_NO_COLOR="true"),
112+
}
113113
if platform.python_version() >= "3.3":
114114
kwargs["timeout"] = 10
115115

sdk/identity/azure-identity/azure/identity/aio/_credentials/azure_cli.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ async def _run_command(command):
6969

7070
try:
7171
proc = await asyncio.create_subprocess_exec(
72-
*args, stdout=asyncio.subprocess.PIPE,
72+
*args,
73+
stdout=asyncio.subprocess.PIPE,
7374
stderr=asyncio.subprocess.STDOUT,
7475
cwd=working_directory,
7576
env=dict(os.environ, AZURE_CORE_NO_COLOR="true")

0 commit comments

Comments
 (0)