robocorp / rpaframework

Collection of open-source libraries and tools for Robotic Process Automation (RPA), designed to be used with both Robot Framework and Python
https://www.rpaframework.org/
Apache License 2.0
1.15k stars 224 forks source link

RPA.Email.ImapSmtp Fix order of parameters for Move Messages keyword #457

Open mikahanninen opened 2 years ago

mikahanninen commented 2 years ago

Current parameters:

criterion: Union[str, dict] = None,
target_folder: str = None,
source_folder: str = None,

More logical would be (like it is in the similar keyword in Exchange library):

criterion: Union[str, dict] = None,
source_folder: str = None,
target_folder: str = None,
mikahanninen commented 1 year ago

@tonnitommi @cmin764 should we close this issue? Can't now remember any requests by the customers to implement this.