In the main.py I'm able to successfully pull in a csv file from my google drive. However in the research environment the QCAlgorithm().Download(feature_path) doesn't work, I get a NullReferenceExeception:

 

NullReferenceException                    Traceback (most recent call last)
Cell In[10], line 1
----> 1 results = QCAlgorithm().Download(feature_path)

NullReferenceException: Object reference not set to an instance of an object.
   at QuantConnect.Algorithm.QCAlgorithm.Download(String address, IEnumerable`1 headers, String userName, String password) in /LeanCloud/CI.Builder/bin/Debug/src/QuantConnect/LeanEnterprise/Algorithm/QCAlgorithm.cs:line 2998
   at QuantConnect.Algorithm.QCAlgorithm.Download(String address, IEnumerable`1 headers) in /LeanCloud/CI.Builder/bin/Debug/src/QuantConnect/LeanEnterprise/Algorithm/QCAlgorithm.cs:line 2983
   at QuantConnect.Algorithm.QCAlgorithm.Download(String address) in /LeanCloud/CI.Builder/bin/Debug/src/QuantConnect/LeanEnterprise/Algorithm/QCAlgorithm.cs:line 2972


How can I pull in an external .csv file into the cloud research environment?