Skip to content

Commit 2495911

Browse files
committed
code_style: run dotnet format
Signed-off-by: leo <[email protected]>
1 parent 1f0dd15 commit 2495911

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

src/Commands/GenerateCommitMessage.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public void Exec()
4949
if (rs.IsSuccess)
5050
{
5151
_service.Chat(
52-
_service.AnalyzeDiffPrompt,
52+
_service.AnalyzeDiffPrompt,
5353
$"Here is the `git diff` output: {rs.StdOut}",
5454
_cancelToken,
5555
update =>
@@ -72,8 +72,8 @@ public void Exec()
7272
var responseBody = responseBuilder.ToString();
7373
var subjectBuilder = new StringBuilder();
7474
_service.Chat(
75-
_service.GenerateSubjectPrompt,
76-
$"Here are the summaries changes:\n{summaryBuilder}",
75+
_service.GenerateSubjectPrompt,
76+
$"Here are the summaries changes:\n{summaryBuilder}",
7777
_cancelToken,
7878
update =>
7979
{

src/Views/AIAssistant.axaml.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,16 @@
22
using System.Collections.Generic;
33
using System.Threading;
44
using System.Threading.Tasks;
5-
65
using Avalonia;
76
using Avalonia.Controls;
87
using Avalonia.Controls.Primitives;
98
using Avalonia.Interactivity;
109
using Avalonia.Media;
1110
using Avalonia.Threading;
12-
11+
using AvaloniaEdit;
1312
using AvaloniaEdit.Document;
1413
using AvaloniaEdit.Editing;
1514
using AvaloniaEdit.TextMate;
16-
using AvaloniaEdit;
1715

1816
namespace SourceGit.Views
1917
{

0 commit comments

Comments
 (0)