Spaces:
Running
on
L40S
Running
on
L40S
File size: 238 Bytes
4450790 |
1 2 3 4 5 6 7 8 9 10 11 12 |
NAMESPACE='rgthree'
def get_name(name):
return '{} ({})'.format(name, NAMESPACE)
def get_category(sub_dirs = None):
if sub_dirs is None:
return NAMESPACE
else:
return "{}/utils".format(NAMESPACE)
|