anzorq's picture
Update utils.py
2740d7b
raw
history blame
118 Bytes
def is_google_colab():
try:
import google.colab
return True
except:
return False