Skip to content

Commit ce79d53

Browse files
committed
fix(github): e501 line too long
1 parent f05cf04 commit ce79d53

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/mcp_github/github_integration.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,12 @@ def user_activity_query(self, variables: dict[str, Any], query: str) -> Dict[str
678678
logging.info("Performing user query on GitHub")
679679

680680
try:
681-
response = requests.post('https://api.github.com/graphql', json={'query': query, 'variables': variables}, headers=self._get_headers(), timeout=TIMEOUT)
681+
response = requests.post(
682+
'https://api.github.com/graphql',
683+
json={'query': query, 'variables': variables},
684+
headers=self._get_headers(),
685+
timeout=TIMEOUT
686+
)
682687
response.raise_for_status()
683688
query_data = response.json()
684689
return query_data

0 commit comments

Comments
 (0)