Skip to content

Commit dba97c2

Browse files
committed
fix: lint
1 parent a21971d commit dba97c2

21 files changed

Lines changed: 21 additions & 21 deletions

lib/easypost/services/address.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
class EasyPost::Services::Address < EasyPost::Services::Service
4-
MODEL_CLASS = EasyPost::Models::Address #:nodoc:
4+
MODEL_CLASS = EasyPost::Models::Address # :nodoc:
55

66
# Create an address.
77
def create(params = {})

lib/easypost/services/batch.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
class EasyPost::Services::Batch < EasyPost::Services::Service
4-
MODEL_CLASS = EasyPost::Models::Batch #:nodoc:
4+
MODEL_CLASS = EasyPost::Models::Batch # :nodoc:
55

66
# Create a Batch.
77
def create(params = {})

lib/easypost/services/carrier_account.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
class EasyPost::Services::CarrierAccount < EasyPost::Services::Service
44
CUSTOM_WORKFLOW_CARRIER_TYPES = %w[FedexAccount FedexSmartpostAccount].freeze
55
UPS_OAUTH_CARRIER_ACCOUNT_TYPES = %w[UpsAccount UpsMailInnovationsAccount UpsSurepostAccount].freeze
6-
MODEL_CLASS = EasyPost::Models::CarrierAccount #:nodoc:
6+
MODEL_CLASS = EasyPost::Models::CarrierAccount # :nodoc:
77

88
# Create a carrier account
99
def create(params = {})

lib/easypost/services/carrier_type.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
class EasyPost::Services::CarrierType < EasyPost::Services::Service
4-
MODEL_CLASS = EasyPost::Models::CarrierType #:nodoc:
4+
MODEL_CLASS = EasyPost::Models::CarrierType # :nodoc:
55

66
# Retrieve all carrier types
77
def all

lib/easypost/services/claim.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
class EasyPost::Services::Claim < EasyPost::Services::Service
4-
MODEL_CLASS = EasyPost::Models::Claim #:nodoc:
4+
MODEL_CLASS = EasyPost::Models::Claim # :nodoc:
55

66
# Create an Claim object
77
def create(params = {})

lib/easypost/services/customs_info.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
class EasyPost::Services::CustomsInfo < EasyPost::Services::Service
4-
MODEL_CLASS = EasyPost::Models::CustomsInfo #:nodoc:
4+
MODEL_CLASS = EasyPost::Models::CustomsInfo # :nodoc:
55

66
# Create a CustomsInfo object
77
def create(params)

lib/easypost/services/customs_item.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
class EasyPost::Services::CustomsItem < EasyPost::Services::Service
4-
MODEL_CLASS = EasyPost::Models::CustomsItem #:nodoc:
4+
MODEL_CLASS = EasyPost::Models::CustomsItem # :nodoc:
55

66
# Create a CustomsItem object
77
def create(params)

lib/easypost/services/end_shipper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
class EasyPost::Services::EndShipper < EasyPost::Services::Service
4-
MODEL_CLASS = EasyPost::Models::EndShipper #:nodoc:
4+
MODEL_CLASS = EasyPost::Models::EndShipper # :nodoc:
55

66
# Create an EndShipper object.
77
def create(params = {})

lib/easypost/services/event.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
require 'json'
44

55
class EasyPost::Services::Event < EasyPost::Services::Service
6-
MODEL_CLASS = EasyPost::Models::Event #:nodoc:
6+
MODEL_CLASS = EasyPost::Models::Event # :nodoc:
77

88
# Retrieve an Event object
99
def retrieve(id)

lib/easypost/services/insurance.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
class EasyPost::Services::Insurance < EasyPost::Services::Service
4-
MODEL_CLASS = EasyPost::Models::Insurance #:nodoc:
4+
MODEL_CLASS = EasyPost::Models::Insurance # :nodoc:
55

66
# Create an Insurance object
77
def create(params = {})

0 commit comments

Comments
 (0)