From f24cb943b01d2845eebdd49aa64ce033ac9c7989 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Fri, 3 Aug 2018 18:57:43 +0200 Subject: [PATCH] protob: add one empty line to pb2py to make isort happy --- protob/pb2py | 1 + 1 file changed, 1 insertion(+) diff --git a/protob/pb2py b/protob/pb2py index 6323d7f37e..7864229c8a 100755 --- a/protob/pb2py +++ b/protob/pb2py @@ -215,6 +215,7 @@ class Descriptor: # "from .. import protobuf as p" yield self.protobuf_import + " as p" + yield "" fields = [self.parse_field(field) for field in message.field]