-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Labels
enhancementNew feature or requestNew feature or request
Milestone
Description
Original report by Kevin Adler (Bitbucket: kadler, GitHub: kadler).
How you call itoolkit transports seems backwards to me:
#!python
itransport = iLibCall()
itool = iToolKit()
itool.add(...)
itool.call(itransport)
would make more sense to me as:
#!python
itransport = iLibCall()
itool = iToolKit()
itool.add(...)
itransport.call(itool)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request