Skip to content

Commit df147a6

Browse files
authored
fix up new linter violations (#252)
1 parent 6dc9e21 commit df147a6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/queries/github_repository_label_active_check.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,15 @@ def headers(_context)
7777

7878
client = GraphQL::Client.new(schema: schema, execute: http)
7979

80-
GitHubRepositoryLabelActiveCheck.const_set :RateLimitQuery, client.parse(<<-'GRAPHQL')
80+
GitHubRepositoryLabelActiveCheck.const_set :RateLimitQuery, client.parse(<<-GRAPHQL)
8181
{
8282
rateLimit {
8383
remaining
8484
}
8585
}
8686
GRAPHQL
8787

88-
GitHubRepositoryLabelActiveCheck.const_set :IssueCountForLabel, client.parse(<<-'GRAPHQL')
88+
GitHubRepositoryLabelActiveCheck.const_set :IssueCountForLabel, client.parse(<<-GRAPHQL)
8989
query($owner: String!, $name: String!, $label: String!) {
9090
repository(owner: $owner, name: $name) {
9191
label(name: $label) {

0 commit comments

Comments
 (0)