Skip to content
This repository has been archived by the owner on Jun 29, 2022. It is now read-only.

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Mar 22, 2022
1 parent 1084259 commit 7bd0773
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/inventory/create_inventory.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
notes: 'here are some notes',
part_price: 19.99,
location_id: 1,
quantity: 1,
quantity: 1
}
)

Expand Down
2 changes: 1 addition & 1 deletion examples/inventory/update_inventory.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
notes: 'here are some notes',
part_price: 19.99,
location_id: 1,
quantity: 1,
quantity: 1
}
)

Expand Down
2 changes: 1 addition & 1 deletion examples/locations/create_location.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
street: '123 California Ave',
city: 'Salt Lake',
state: 'UT',
zip: '84043',
zip: '84043'
}
)

Expand Down
2 changes: 1 addition & 1 deletion examples/locations/update_location.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
street: '123 California Ave',
city: 'Salt Lake',
state: 'UT',
zip: '84043',
zip: '84043'
}
)

Expand Down
2 changes: 1 addition & 1 deletion examples/tickets/create_ticket.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
status: 1,
device: '2',
imei: 10000,
location_id: 1,
location_id: 1
}
)

Expand Down
2 changes: 1 addition & 1 deletion examples/tickets/update_ticket.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
status: 1,
device: '2',
imei: 10000,
location_id: 1,
location_id: 1
}
)

Expand Down

0 comments on commit 7bd0773

Please sign in to comment.