From 3fb849875c6117045ded3b14006376923dcfbd62 Mon Sep 17 00:00:00 2001 From: openhands Date: Mon, 24 Feb 2025 19:49:08 +0000 Subject: [PATCH] [Cleanup]: Remove debug print statements --- openhands/integrations/github/github_service.py | 4 ---- 1 file changed, 4 deletions(-) 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 []