We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bc74f0 commit 5da6fc2Copy full SHA for 5da6fc2
easypost/shipment.py
@@ -75,7 +75,7 @@ def lowest_rate(self, carriers: List[str] = None, services: List[str] = None) ->
75
def lowest_smartrate(self, delivery_days: int, delivery_accuracy: str) -> Rate:
76
"""Get the lowest smartrate of this shipment."""
77
smartrates = self.get_smartrates()
78
- lowest_smartrate = self.get_lowest_smartrate(smartrates, delivery_days, delivery_accuracy)
+ lowest_smartrate = self.get_lowest_smartrate(smartrates, delivery_days, delivery_accuracy.lower())
79
80
return lowest_smartrate
81
0 commit comments