Skip to content

Commit df6adf1

Browse files
committed
chore: add Python 3.5 PyPI classifier to setup.py
style: fix spaces around =
1 parent a681192 commit df6adf1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ def main():
3131
"Operating System :: POSIX :: Linux",
3232
"Programming Language :: Python",
3333
"Programming Language :: Python :: 3 :: Only",
34+
"Programming Language :: Python :: 3.5",
3435
"Programming Language :: Python :: 3.6",
3536
"Programming Language :: Python :: 3.7",
3637
"Programming Language :: Python :: Implementation :: CPython",

src/purerpc/protoc_plugin/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def generate_single_proto(proto_file: descriptor_pb2.FileDescriptorProto,
8181
" channel\n"
8282
" )")
8383
lines.append(fmt_string.format(
84-
service_name = service.name,
84+
service_name=service.name,
8585
fully_qualified_service_name=fully_qualified_service_name
8686
))
8787
for method in service.method:

0 commit comments

Comments
 (0)