Refactor and add typing for enos g5k package
This PR:
- reorganize import according Python convention;
- convert formatted string to f-string (
"%s cat" % adjective
tof"{adjective} cat"
); - replace formatted string by logging lazy formatting (
logger.info("%s cat" % adjective)
tologger.info("%s cat", adjective)
); - add more typing.