Fix warnings part 6 (#8107)
* Fix half of the XML docs missing warnings * Remove warnings from csproj files
This commit is contained in:
committed by
GitHub
parent
47acbd66a2
commit
57f89620a1
@@ -1547,12 +1547,18 @@ namespace QuantConnect.Algorithm
|
||||
return pythonIndicator;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Converts an enumerable of Slice into a Python Pandas dataframe
|
||||
/// </summary>
|
||||
protected PyObject GetDataFrame(IEnumerable<Slice> data, Type dataType = null)
|
||||
{
|
||||
var history = PandasConverter.GetDataFrame(RemoveMemoizing(data), dataType);
|
||||
return TryCleanupCollectionDataFrame(dataType, history);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Converts an enumerable of BaseData into a Python Pandas dataframe
|
||||
/// </summary>
|
||||
protected PyObject GetDataFrame<T>(IEnumerable<T> data)
|
||||
where T : IBaseData
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user