mirror of
https://github.com/All-Hands-AI/OpenHands.git
synced 2026-04-29 03:00:45 -04:00
13 lines
446 B
Python
13 lines
446 B
Python
from __future__ import annotations
|
|
|
|
from openhands.integrations.forgejo.service.base import ForgejoMixinBase
|
|
from openhands.integrations.service_types import SuggestedTask
|
|
|
|
|
|
class ForgejoFeaturesMixin(ForgejoMixinBase):
|
|
"""Microagent and feature helpers for Forgejo."""
|
|
|
|
async def get_suggested_tasks(self) -> list[SuggestedTask]: # type: ignore[override]
|
|
# Suggested tasks are not yet implemented for Forgejo.
|
|
return []
|