我在一个名为functions的文件夹中有一个文件readfunctions.py(在这个文件夹中还有一个“ init .py " file). In the file readfunctions.py I have defined a function called " read_from_shower” .

./functions
    readfunctions.py
    __init__.py

所以,我已经在我的Google Colab会话中导入了这个(在克隆了存储库之后从GitHub导入):

from functions.readfunctions import read_from_shower

它工作正常 . 但是,我在我的函数“read_from_shower”中做了一些更改,但我可以在Colab中重新加载它 .

我该怎么做?