anzorq commited on
Commit
2740d7b
1 Parent(s): f899110

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +5 -6
utils.py CHANGED
@@ -1,7 +1,6 @@
1
  def is_google_colab():
2
- # try:
3
- # import google.colab
4
- # return True
5
- # except:
6
- # return False
7
- return True
 
1
  def is_google_colab():
2
+ try:
3
+ import google.colab
4
+ return True
5
+ except:
6
+ return False