Cletrason's picture
Upload utils (2).py
5a2859f
raw
history blame
112 Bytes
def is_google_colab():
try:
import google.colab
return True
except:
return False