docs: update doc samples to use lowercased tuple and dict

This commit is contained in:
Matthias
2024-11-11 20:24:01 +01:00
parent e8cd6b3be3
commit d9b8f46282
4 changed files with 11 additions and 11 deletions

View File

@@ -780,7 +780,7 @@ class MyCoolFreqaiModel(BaseRegressionModel):
def predict(
self, unfiltered_df: DataFrame, dk: FreqaiDataKitchen, **kwargs
) -> Tuple[DataFrame, npt.NDArray[np.int_]]:
) -> tuple[DataFrame, npt.NDArray[np.int_]]:
# ... your custom stuff