Python backend for a Slack's kudos plugin.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: testing pre commit mypy

+2 -2
+1 -1
.pre-commit-config.yaml
··· 16 16 rev: v0.982 17 17 hooks: 18 18 - id: mypy 19 - additional_dependencies: [types-pytz==2022.6.0.1,types-requests==2.28.11] 19 + additional_dependencies: [types-pytz==2022.6.0.1,types-requests==2.28.11, sqlmodel==0.0.8]
+1 -1
kefi/models/kudos/database.py
··· 7 7 from kefi.models.core.database import Transaction 8 8 9 9 10 - class Action(SQLModel, table=True): # type: ignore 10 + class Action(SQLModel, table=True): 11 11 """Each action a user can perform to give kefis to another user.""" 12 12 13 13 id: int | None = Field(default=None, primary_key=True)