Riccardo Giorato
fixes
b5da431
raw
history blame contribute delete
No virus
113 Bytes
def is_google_colab():
try:
import google.colab
return True
except:
return False