Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyrrrz committed Dec 2, 2024
1 parent 748daab commit 1b3f5cb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions YoutubeDownloader/Framework/DialogVIewModelBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ namespace YoutubeDownloader.Framework;

public abstract partial class DialogViewModelBase<T> : ViewModelBase
{
private readonly TaskCompletionSource<T> _closeTcs =
new(TaskCreationOptions.RunContinuationsAsynchronously);
private readonly TaskCompletionSource<T> _closeTcs = new(
TaskCreationOptions.RunContinuationsAsynchronously
);

[ObservableProperty]
private T? _dialogResult;
Expand Down

0 comments on commit 1b3f5cb

Please sign in to comment.