Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Dec 17, 2024
1 parent a21971d commit dba97c2
Show file tree
Hide file tree
Showing 21 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion lib/easypost/services/address.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

class EasyPost::Services::Address < EasyPost::Services::Service
MODEL_CLASS = EasyPost::Models::Address #:nodoc:
MODEL_CLASS = EasyPost::Models::Address # :nodoc:

# Create an address.
def create(params = {})
Expand Down
2 changes: 1 addition & 1 deletion lib/easypost/services/batch.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

class EasyPost::Services::Batch < EasyPost::Services::Service
MODEL_CLASS = EasyPost::Models::Batch #:nodoc:
MODEL_CLASS = EasyPost::Models::Batch # :nodoc:

# Create a Batch.
def create(params = {})
Expand Down
2 changes: 1 addition & 1 deletion lib/easypost/services/carrier_account.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
class EasyPost::Services::CarrierAccount < EasyPost::Services::Service
CUSTOM_WORKFLOW_CARRIER_TYPES = %w[FedexAccount FedexSmartpostAccount].freeze
UPS_OAUTH_CARRIER_ACCOUNT_TYPES = %w[UpsAccount UpsMailInnovationsAccount UpsSurepostAccount].freeze
MODEL_CLASS = EasyPost::Models::CarrierAccount #:nodoc:
MODEL_CLASS = EasyPost::Models::CarrierAccount # :nodoc:

# Create a carrier account
def create(params = {})
Expand Down
2 changes: 1 addition & 1 deletion lib/easypost/services/carrier_type.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

class EasyPost::Services::CarrierType < EasyPost::Services::Service
MODEL_CLASS = EasyPost::Models::CarrierType #:nodoc:
MODEL_CLASS = EasyPost::Models::CarrierType # :nodoc:

# Retrieve all carrier types
def all
Expand Down
2 changes: 1 addition & 1 deletion lib/easypost/services/claim.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

class EasyPost::Services::Claim < EasyPost::Services::Service
MODEL_CLASS = EasyPost::Models::Claim #:nodoc:
MODEL_CLASS = EasyPost::Models::Claim # :nodoc:

# Create an Claim object
def create(params = {})
Expand Down
2 changes: 1 addition & 1 deletion lib/easypost/services/customs_info.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

class EasyPost::Services::CustomsInfo < EasyPost::Services::Service
MODEL_CLASS = EasyPost::Models::CustomsInfo #:nodoc:
MODEL_CLASS = EasyPost::Models::CustomsInfo # :nodoc:

# Create a CustomsInfo object
def create(params)
Expand Down
2 changes: 1 addition & 1 deletion lib/easypost/services/customs_item.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

class EasyPost::Services::CustomsItem < EasyPost::Services::Service
MODEL_CLASS = EasyPost::Models::CustomsItem #:nodoc:
MODEL_CLASS = EasyPost::Models::CustomsItem # :nodoc:

# Create a CustomsItem object
def create(params)
Expand Down
2 changes: 1 addition & 1 deletion lib/easypost/services/end_shipper.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

class EasyPost::Services::EndShipper < EasyPost::Services::Service
MODEL_CLASS = EasyPost::Models::EndShipper #:nodoc:
MODEL_CLASS = EasyPost::Models::EndShipper # :nodoc:

# Create an EndShipper object.
def create(params = {})
Expand Down
2 changes: 1 addition & 1 deletion lib/easypost/services/event.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require 'json'

class EasyPost::Services::Event < EasyPost::Services::Service
MODEL_CLASS = EasyPost::Models::Event #:nodoc:
MODEL_CLASS = EasyPost::Models::Event # :nodoc:

# Retrieve an Event object
def retrieve(id)
Expand Down
2 changes: 1 addition & 1 deletion lib/easypost/services/insurance.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

class EasyPost::Services::Insurance < EasyPost::Services::Service
MODEL_CLASS = EasyPost::Models::Insurance #:nodoc:
MODEL_CLASS = EasyPost::Models::Insurance # :nodoc:

# Create an Insurance object
def create(params = {})
Expand Down
2 changes: 1 addition & 1 deletion lib/easypost/services/order.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

class EasyPost::Services::Order < EasyPost::Services::Service
MODEL_CLASS = EasyPost::Models::Order #:nodoc:
MODEL_CLASS = EasyPost::Models::Order # :nodoc:

# Create an Order object
def create(params = {})
Expand Down
2 changes: 1 addition & 1 deletion lib/easypost/services/parcel.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

class EasyPost::Services::Parcel < EasyPost::Services::Service
MODEL_CLASS = EasyPost::Models::Parcel #:nodoc:
MODEL_CLASS = EasyPost::Models::Parcel # :nodoc:

# Create a Parcel object
def create(params = {})
Expand Down
2 changes: 1 addition & 1 deletion lib/easypost/services/pickup.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

class EasyPost::Services::Pickup < EasyPost::Services::Service
MODEL_CLASS = EasyPost::Models::Pickup #:nodoc:
MODEL_CLASS = EasyPost::Models::Pickup # :nodoc:

# Create a Pickup object
def create(params = {})
Expand Down
2 changes: 1 addition & 1 deletion lib/easypost/services/referral_customer.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

class EasyPost::Services::ReferralCustomer < EasyPost::Services::Service
MODEL_CLASS = EasyPost::Models::User #:nodoc:
MODEL_CLASS = EasyPost::Models::User # :nodoc:

# Create a referral customer. This function requires the Partner User's API key.
def create(params = {})
Expand Down
2 changes: 1 addition & 1 deletion lib/easypost/services/refund.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

class EasyPost::Services::Refund < EasyPost::Services::Service
MODEL_CLASS = EasyPost::Models::Refund #:nodoc:
MODEL_CLASS = EasyPost::Models::Refund # :nodoc:

# Create a Refund object
def create(params = {})
Expand Down
2 changes: 1 addition & 1 deletion lib/easypost/services/report.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

class EasyPost::Services::Report < EasyPost::Services::Service
MODEL_CLASS = EasyPost::Models::Report #:nodoc:
MODEL_CLASS = EasyPost::Models::Report # :nodoc:

# Create a Report
def create(params = {})
Expand Down
2 changes: 1 addition & 1 deletion lib/easypost/services/scan_form.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

class EasyPost::Services::ScanForm < EasyPost::Services::Service
MODEL_CLASS = EasyPost::Models::ScanForm #:nodoc:
MODEL_CLASS = EasyPost::Models::ScanForm # :nodoc:

# Create a ScanForm.
def create(params = {})
Expand Down
2 changes: 1 addition & 1 deletion lib/easypost/services/shipment.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require 'set'

class EasyPost::Services::Shipment < EasyPost::Services::Service
MODEL_CLASS = EasyPost::Models::Shipment #:nodoc:
MODEL_CLASS = EasyPost::Models::Shipment # :nodoc:

# Create a Shipment.
def create(params = {})
Expand Down
2 changes: 1 addition & 1 deletion lib/easypost/services/tracker.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

class EasyPost::Services::Tracker < EasyPost::Services::Service
MODEL_CLASS = EasyPost::Models::Tracker #:nodoc:
MODEL_CLASS = EasyPost::Models::Tracker # :nodoc:

# Create a Tracker
def create(params = {})
Expand Down
2 changes: 1 addition & 1 deletion lib/easypost/services/user.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

class EasyPost::Services::User < EasyPost::Services::Service
MODEL_CLASS = EasyPost::Models::User #:nodoc:
MODEL_CLASS = EasyPost::Models::User # :nodoc:

# Create a child User.
def create(params = {})
Expand Down
2 changes: 1 addition & 1 deletion lib/easypost/services/webhook.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

class EasyPost::Services::Webhook < EasyPost::Services::Service
MODEL_CLASS = EasyPost::Models::Webhook #:nodoc:
MODEL_CLASS = EasyPost::Models::Webhook # :nodoc:

# Create a Webhook.
def create(params = {})
Expand Down

0 comments on commit dba97c2

Please sign in to comment.