Skip to content

Commit 586a3a9

Browse files
committed
add missing positional argument declaration
1 parent 74621e1 commit 586a3a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openship/domain/entities/definitions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from collections import namedtuple
44

55
''' shipment details Type definition '''
6-
class shipment_details_type(namedtuple("shipment_details_type", "packages insurance charges_payment number_of_packages packaging_type is_dutiable currency total_weight weight_unit dimension_unit")):
6+
class shipment_details_type(namedtuple("shipment_details_type", "packages insurance charges_payment number_of_packages packaging_type is_dutiable currency total_weight weight_unit dimension_unit payment_country_code")):
77
def __new__(cls, packages, insurance=None, charges_payment=None, number_of_packages=None, packaging_type=None, is_dutiable="N", currency=None, total_weight=None, weight_unit="LB", dimension_unit="IN", payment_country_code=None):
88
return super(cls, shipment_details_type).__new__(
99
cls,

0 commit comments

Comments
 (0)