Description
Hello some hints for pythonic way of writing coding:
)
Instead of if StringHelper.isEmpty(param): you can just use if not param
Instead of if StringHelper.isNotEmpty(acr) and acr.find(prefix) == 0: you can use if acr and acr.startswith(prefix): (
Activity