Skip to content

Commit 40c1f72

Browse files
fix linter
1 parent 29de4e5 commit 40c1f72

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

slo/src/EF/SloTableContext.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,9 @@ int readTimeout
8282
)
8383
{
8484
await using var dbContext = await client.CreateDbContextAsync();
85-
return (0, StatusCode.Success, await dbContext.SloEntities.FirstOrDefaultAsync(
86-
table => table.Guid == select.Guid && table.Id == select.Id));
85+
return (0, StatusCode.Success,
86+
await dbContext.SloEntities.FirstOrDefaultAsync(
87+
table => table.Guid == select.Guid && table.Id == select.Id));
8788
}
8889

8990
protected override async Task<int> SelectCount(PooledDbContextFactory<TableDbContext> client)

0 commit comments

Comments
 (0)