(self, name, layout={'order': 'desc', 'keys': [['ts']]},
thresh=0)
| 36 | return None |
| 37 | |
| 38 | def create_pool(self, name, layout={'order': 'desc', 'keys': [['ts']]}, |
| 39 | thresh=0): |
| 40 | r = self.session.post(self.base_url + '/pool', json={ |
| 41 | 'name': name, |
| 42 | 'layout': layout, |
| 43 | 'thresh': thresh, |
| 44 | }) |
| 45 | self.__raise_for_status(r) |
| 46 | |
| 47 | def load(self, pool_name_or_id, data, branch_name='main', |
| 48 | commit_author=getpass.getuser(), commit_body=''): |
nothing calls this directly
no test coverage detected