I'm currently learning Python and I came across a notation I was wondering about:
import taskmanager as tm
#........
@tm.task(str)
def feat(folder):
BLA BLA BLA ...
the code is a small excerpt from https://github.com/kfrancoi/phd-retailreco/blob/master/libraries/plsa/example_plsa.py (the file contains several more notations using the @
sign).
Is this a common notation in python and what does it mean? Or is this only a notation used in this special case with the taskmanager or what!?
I tried my best looking this up on google but it's though to find as the @-sign is stripped out in my search (too short, special character). Same happens here on Stackoverflow.
Thank you very much in advance