Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Arthur Chan <[email protected]>
  • Loading branch information
arthurscchan committed Nov 25, 2024
1 parent e58090f commit a405406
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion data_prep/introspector.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,9 @@ def query_introspector_language_stats() -> dict:
result = _get_data(resp, 'stats', {})
if result:
# FI returns java as the key for jvm projects
result = {'jvm' if key == 'java' else key: value for key, value in result.items()}
result = {
'jvm' if key == 'java' else key: value for key, value in result.items()
}

return result

Expand Down

0 comments on commit a405406

Please sign in to comment.