anzorq's picture
Update utils.py
6fef67a
raw history blame
No virus
112 Bytes
def is_google_colab():
try:
import google.colab
return True
except:
return False