diff --git a/openhands/integrations/github/github_service.py b/openhands/integrations/github/github_service.py index 11e4ed6a291d..d29eaf607e5c 100644 --- a/openhands/integrations/github/github_service.py +++ b/openhands/integrations/github/github_service.py @@ -226,9 +226,6 @@ async def get_suggested_tasks( try: response = await self.execute_graphql_query(query, variables) - print('\nGraphQL Response:') - print(response) - data = response['data']['user'] tasks: list[SuggestedTask] = [] @@ -280,7 +277,6 @@ async def get_suggested_tasks( return tasks except Exception as e: - print(f'Error: {str(e)}') return []