Skip to content

Commit

Permalink
chore: Rubocop remove ./ from require_relative (open-telemetry#1475)
Browse files Browse the repository at this point in the history
Required for Ruby 3.0 rubocop
  • Loading branch information
kaylareopelle authored Jun 27, 2023
1 parent de02755 commit 848c512
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
#
# SPDX-License-Identifier: Apache-2.0

require_relative './opentelemetry/semantic_conventions'
require_relative 'opentelemetry/semantic_conventions'
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ module SemanticConventions
end
end

require_relative './semantic_conventions/trace'
require_relative './semantic_conventions/resource'
require_relative 'semantic_conventions/trace'
require_relative 'semantic_conventions/resource'

0 comments on commit 848c512

Please sign in to comment.