aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/src/grpc/_adapter/_server.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/python/src/grpc/_adapter/_server.h')
-rw-r--r--src/python/src/grpc/_adapter/_server.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/python/src/grpc/_adapter/_server.h b/src/python/src/grpc/_adapter/_server.h
index 0c517e3715..4836bb638c 100644
--- a/src/python/src/grpc/_adapter/_server.h
+++ b/src/python/src/grpc/_adapter/_server.h
@@ -37,7 +37,10 @@
#include <Python.h>
#include <grpc/grpc.h>
-typedef struct { PyObject_HEAD grpc_server *c_server; } Server;
+typedef struct {
+ PyObject_HEAD
+ grpc_server *c_server;
+} Server;
int pygrpc_add_server(PyObject *module);