'Issue with mounting Google drive with colab

Following code worked fine for mounting google drive with colab until yesterday. But it is not working today ( January 20). It shows the error shown below. Any suggestion would be highly appreciated. Thanks in advance!

from google.colab import drive drive._mount('/content/drive')

enter image description here



Solution 1:[1]

change

drive._mount('/content/drive')

to

drive.mount('/content/drive')

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Arye P.