summaryrefslogtreecommitdiff
path: root/python/testData/inspections/MoveDocstring_after.py
blob: 1833c32c75fe0298d0ddde4b1d2f12ced46fb576 (plain)
1
2
3
4
5
6
7
8
9
class GetCustomerPaymentProfileRequest(CustomerRequest):
  """
  Gets a payment profile by user Account object and authorize.net
  profileid of the payment profile.
  """

  def __init__(self, user, profileid):
    CustomerRequest.__init__(self, user,
                             customerPaymentProfileId=profileid)