MCPcopy Index your code
hub / github.com/piccolo-orm/piccolo / run_sync

Method run_sync

piccolo/query/methods/refresh.py:205–212  ·  view source on GitHub ↗

Run it synchronously. For example:: my_instance.refresh().run_sync()

(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

203 return self.run().__await__()
204
205 def run_sync(self, *args, **kwargs) -> Table:
206 """
207 Run it synchronously. For example::
208
209 my_instance.refresh().run_sync()
210
211 """
212 return run_sync(self.run(*args, **kwargs))

Callers

nothing calls this directly

Calls 2

runMethod · 0.95
run_syncFunction · 0.90

Tested by

no test coverage detected