We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f923015 commit 63d01deCopy full SHA for 63d01de
intbot/core/analysis/products.py
@@ -11,7 +11,7 @@
11
12
13
class LocalisedFieldsMixin:
14
- # Marking as ClassVar here is importnat. It doens't work without it :)
+ # Marking as ClassVar here is important. It doens't work without it :)
15
_localised_fields: ClassVar[Iterable[str]] = ()
16
17
@model_validator(mode="before")
@@ -104,7 +104,7 @@ def flat_product_data(products: list[Product]) -> pl.DataFrame:
104
return pl.DataFrame(rows)
105
106
107
-def latest_flat_product_data():
+def latest_flat_product_data() -> pl.DataFrame:
108
"""
109
Thin wrapper on getting latest information from the database, and
110
converting into a polars data frame
0 commit comments