We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b230855 commit 67f8bd5Copy full SHA for 67f8bd5
src/ghastoolkit/octokit/graphql/__init__.py
@@ -1,4 +1,3 @@
1
-
2
DEPENDENCY_GRAPH_ALERTS = """\
3
{
4
repository(owner: "$owner", name: "$repo") {
@@ -80,10 +79,7 @@
80
79
"""
81
82
83
84
QUERIES = {
85
"GetDependencyAlerts": DEPENDENCY_GRAPH_ALERTS,
86
- "GetDependencyInfo": DEPENDENCY_GRAPH_INFO
+ "GetDependencyInfo": DEPENDENCY_GRAPH_INFO,
87
}
88
89
src/ghastoolkit/octokit/octokit.py
@@ -9,7 +9,7 @@
9
from ratelimit import limits, sleep_and_retry
10
11
from ghastoolkit.octokit.github import GitHub, Repository
12
-from ghastoolkit.octokit.graphql import QUERIES
+from ghastoolkit.octokit.graphql import QUERIES
13
14
15
# Assume REST requests are being done by a GitHub Token, not
0 commit comments