Skip to content

Commit

Permalink
fix(auth): remove unnecessary noqa comment in is_google_colab function
Browse files Browse the repository at this point in the history
  • Loading branch information
not-lain committed Jan 3, 2025
1 parent 6e511be commit 49def1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/fal/src/fal/auth/colab.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def __init__(self):

def is_google_colab() -> bool:
try:
return "google.colab" in str(get_ipython()) # noqa: F821
return "google.colab" in str(get_ipython()) # noqa
except NameError:
return False

Expand Down

0 comments on commit 49def1c

Please sign in to comment.