Skip to content

Commit 31a57c4

Browse files
style: apply ruff formatting to github_scraper.py
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent d71c1d3 commit 31a57c4

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/skill_seekers/cli/github_scraper.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -522,9 +522,7 @@ def _extract_languages(self):
522522
# Filter out non-integer metadata (e.g., "url" key from some API configurations)
523523
non_lang_keys = {k for k, v in languages.items() if not isinstance(v, int)}
524524
if non_lang_keys:
525-
logger.debug(
526-
f"Filtered non-language keys from API response: {non_lang_keys}"
527-
)
525+
logger.debug(f"Filtered non-language keys from API response: {non_lang_keys}")
528526
languages = {k: v for k, v in languages.items() if isinstance(v, int)}
529527
total_bytes = sum(languages.values())
530528

0 commit comments

Comments
 (0)