Skip to content

style(pre-commit): global trim trailing whitespace (cache + tests)#165

Merged
RicherTunes merged 17 commits intomainfrom
fix/green-build-doc-strings
Sep 13, 2025
Merged

style(pre-commit): global trim trailing whitespace (cache + tests)#165
RicherTunes merged 17 commits intomainfrom
fix/green-build-doc-strings

Conversation

@RicherTunes
Copy link
Owner

Removes trailing spaces across EnhancedRecommendationCache.cs and two test files to satisfy pre-commit hooks.

Brainarr Bot added 17 commits September 13, 2025 14:58
…rtion (factory call still constrained to 1)
@RicherTunes RicherTunes merged commit aafedc2 into main Sep 13, 2025
4 of 5 checks passed
@RicherTunes RicherTunes deleted the fix/green-build-doc-strings branch September 13, 2025 19:56
Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Codex Review: Here are some suggestions.

Reply with @codex fix comments to fix any unresolved comments.

About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you open a pull request for review, mark a draft as ready, or comment "@codex review". If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex fix this CI failure" or "@codex address that feedback".

Comment on lines 379 to 393
/// <summary>

/// Tries to get a value from the cache.

/// </summary>

public async Task<bool> TryGetAsync(string key, out List<ImportListItemInfo> value)

{

var result = await GetAsync(key);

value = result.Value;

return result.Found;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[P0] Make TryGetAsync compile-safe

The new TryGetAsync signature is declared as public async Task<bool> TryGetAsync(string key, out List<ImportListItemInfo> value). C# forbids async methods from having out (or ref) parameters, so this file will no longer compile. Consider returning the value inside the Task result (e.g. Task<CacheResult<T>>) rather than using an out parameter.

Useful? React with 👍 / 👎.

RicherTunes added a commit that referenced this pull request Dec 27, 2025
Includes:
- PR #165: disc-aware naming, extension normalization
- PR #166: maxConcurrentTracks for bounded parallelism

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
@RicherTunes RicherTunes mentioned this pull request Dec 27, 2025
1 task
RicherTunes added a commit that referenced this pull request Dec 27, 2025
Includes:
- PR #165: disc-aware naming, extension normalization
- PR #166: maxConcurrentTracks for bounded parallelism

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
RicherTunes added a commit that referenced this pull request Dec 27, 2025
Includes:
- PR #165: disc-aware naming, extension normalization
- PR #166: maxConcurrentTracks for bounded parallelism

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant