diff --git a/prediction_market_agent_tooling/jobs/jobs_models.py b/prediction_market_agent_tooling/jobs/jobs_models.py index fa6b2817..fd316312 100644 --- a/prediction_market_agent_tooling/jobs/jobs_models.py +++ b/prediction_market_agent_tooling/jobs/jobs_models.py @@ -36,8 +36,8 @@ def deadline(self) -> datetime: def get_reward(self, max_bond: float) -> float: """Reward for completing this job.""" - @abstractmethod @classmethod + @abstractmethod def get_jobs( cls, limit: int | None, filter_by: FilterBy, sort_by: SortBy ) -> t.Sequence["JobAgentMarket"]: diff --git a/pyproject.toml b/pyproject.toml index fa58b24d..139b1e4f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "prediction-market-agent-tooling" -version = "0.48.15" +version = "0.48.16" description = "Tools to benchmark, deploy and monitor prediction market agents." authors = ["Gnosis"] readme = "README.md"