Applying black formatting

- Fixing flake8 configuration to agree with black
- Adding black validation check to github actions
This commit is contained in:
Jacob Alexander
2021-10-01 11:00:22 -07:00
parent 5dade41aeb
commit 6e7fffd7de
51 changed files with 2536 additions and 1837 deletions

View File

@@ -1,6 +1,6 @@
'''
"""
rpc test
'''
"""
import pytest
import capnp
@@ -10,7 +10,6 @@ import test_capability_capnp
class Server(test_capability_capnp.TestInterface.Server):
def __init__(self, val=100):
self.val = val
@@ -45,4 +44,4 @@ def test_simple_rpc_bootstrap():
remote = cap.foo(i=5)
response = remote.wait()
assert response.x == '125'
assert response.x == "125"