mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-11 15:52:21 -05:00
4 lines
119 B
Python
4 lines
119 B
Python
|
|
class Take(str):
|
||
|
|
def then(self, func, *args, **kwargs):
|
||
|
|
return self.__class__(func(self, *args, **kwargs))
|