anything-v3.0_krn / utils.py
TheThanos's picture
Duplicate from akhaliq/anything-v3.0
35b57b4
raw
history blame contribute delete
No virus
112 Bytes
def is_google_colab():
try:
import google.colab
return True
except:
return False