summaryrefslogtreecommitdiff
path: root/python/testData/inspections/MoveDocstring.py
blob: 1db4e3f4d2828d75d212c03632efddc60b9a622e (plain)
1
2
3
4
5
6
7
8
class GetCustomerPaymentProfileRequest(CustomerRequest):
  def __init__(self, user, profileid):
    CustomerRequest.__init__(self, user,
                             customerPaymentProfileId=profileid)
  <warning descr="Docstring seems to be misplaced">"""
  Gets a payment profile by user <caret>Account object and authorize.net
  profileid of the payment profile.
  """</warning>