You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by je...@apache.org on 2021/11/15 18:33:23 UTC

[thrift] 01/02: FIX: Python code style / flake8: TProcessPoolServer.py:46:14: E225 missing whitespace around operator

This is an automated email from the ASF dual-hosted git repository.

jensg pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/thrift.git

commit 443a03c558fdef6e6908e8fb47f7011c2d7ff9f6
Author: Jens Geyer <je...@apache.org>
AuthorDate: Mon Nov 15 19:30:13 2021 +0100

    FIX: Python code style / flake8: TProcessPoolServer.py:46:14: E225 missing whitespace around operator
---
 lib/py/src/server/TProcessPoolServer.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/py/src/server/TProcessPoolServer.py b/lib/py/src/server/TProcessPoolServer.py
index d2e97c5..c9cfa11 100644
--- a/lib/py/src/server/TProcessPoolServer.py
+++ b/lib/py/src/server/TProcessPoolServer.py
@@ -43,7 +43,7 @@ class TProcessPoolServer(TServer):
         self.postForkCallback = None
 
     def __getstate__(self):
-        state=self.__dict__.copy()
+        state = self.__dict__.copy()
         state['workers'] = None
         return state