Skip to content

Commit 2216ac9

Browse files
Copilotfriggeri
andcommitted
Fix trailing whitespace issues in Python and Go code
Co-authored-by: friggeri <106686+friggeri@users.noreply.github.com>
1 parent bf71145 commit 2216ac9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

go/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -999,7 +999,7 @@ func (c *Client) verifyProtocolVersion(ctx context.Context) error {
999999
func (c *Client) startCLIServer(ctx context.Context) error {
10001000
// Start with user-provided CLI args (inserted before SDK-managed args)
10011001
args := append([]string{}, c.options.CLIArgs...)
1002-
1002+
10031003
// Add SDK-managed args
10041004
args = append(args, "--headless", "--no-auto-update", "--log-level", c.options.LogLevel)
10051005

python/copilot/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1119,7 +1119,7 @@ async def _start_cli_server(self) -> None:
11191119

11201120
# Start with user-provided CLI args (inserted before SDK-managed args)
11211121
args = list(self.options.get("cli_args", []))
1122-
1122+
11231123
# Add SDK-managed args
11241124
args.extend(["--headless", "--no-auto-update", "--log-level", self.options["log_level"]])
11251125

0 commit comments

Comments
 (0)