anzorq's picture
Upload utils.py
d40ec63
raw
history blame
No virus
118 Bytes
def is_google_colab():
try:
import google.colab
return True
except:
return False