(self)
| 68 | self.args.append(value) |
| 69 | |
| 70 | def redis_args(self): |
| 71 | args = [self.name] |
| 72 | if self.as_name: |
| 73 | args += [self.AS, self.as_name] |
| 74 | args += self.args |
| 75 | args += self.args_suffix |
| 76 | return args |
| 77 | |
| 78 | |
| 79 | class TextField(Field): |
no outgoing calls
no test coverage detected