Skip to content

Commit

Permalink
Update Src/VTEX/VTEXWrapper.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
gitauto-ai[bot] authored Nov 4, 2024
1 parent c9fc8a8 commit 02afe1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/VTEX/VTEXWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ public async Task<string> GetCollectionsAsync(CancellationToken token)
public async Task<string> UpdateCollectionAsync(int id, string data, CancellationToken token)
{

Check notice on line 435 in Src/VTEX/VTEXWrapper.cs

View check run for this annotation

codefactor.io / CodeFactor

Src/VTEX/VTEXWrapper.cs#L435

An opening brace should not be followed by a blank line. (SA1505)

return await ServiceInvokerAsync(HttpRequestMethod.PUT, $"collections/{id}", token, data: data);
return await ServiceInvokerAsync(HttpRequestMethod.PUT, $"collections/{id}", token, data: data);
}
/// <summary>

Check notice on line 439 in Src/VTEX/VTEXWrapper.cs

View check run for this annotation

codefactor.io / CodeFactor

Src/VTEX/VTEXWrapper.cs#L439

A closing brace should not be preceded by a blank line. (SA1508)
/// Deletes a collection.

Check notice on line 440 in Src/VTEX/VTEXWrapper.cs

View check run for this annotation

codefactor.io / CodeFactor

Src/VTEX/VTEXWrapper.cs#L440

A closing brace should not be preceded by a blank line. (SA1508)
Expand Down

0 comments on commit 02afe1b

Please sign in to comment.