Skip to content

Commit

Permalink
Update backend/app/infrastructure/external_api/holonym/antisybil.py
Browse files Browse the repository at this point in the history
Co-authored-by: Kacper Garbaciński <[email protected]>
  • Loading branch information
paulperegud and kgarbacinski committed Aug 27, 2024
1 parent f3e1c46 commit d5076f6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def check(
results[cred] = _call(address, cred)

has_sbt = any(results.values())
sbt_type = list({k: v for k, v in results.items() if v}.keys())
sbt_type = [k for k, v in results.items() if v]
return has_sbt, sbt_type


Expand Down

0 comments on commit d5076f6

Please sign in to comment.