(self, func, *args, **kwargs)
| 6 | """This is used for formatting strings with values that need to be updated |
| 7 | at that time, such as the current time or working directory.""" |
| 8 | def __init__(self, func, *args, **kwargs): |
| 9 | self.func = func |
| 10 | self.args = args |
| 11 | self.kwargs = kwargs |
| 12 | |
| 13 | def __call__(self, **kwargs): |
| 14 | self.kwargs.update(kwargs) |
nothing calls this directly
no outgoing calls
no test coverage detected