Fix warnings part 6 (#8107)

* Fix half of the XML docs missing warnings

* Remove warnings from csproj files
This commit is contained in:
Ricardo Andrés Marino Rojas
2024-06-26 11:21:53 -05:00
committed by GitHub
parent 47acbd66a2
commit 57f89620a1
32 changed files with 745 additions and 8 deletions
+6
View File
@@ -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
{