Get all tests passing except those E12* tests.

You can reproduce this with "pytest -k 'not E12'".
This commit is contained in:
Dave Halter
2017-07-02 22:50:37 +02:00
parent dd950392c8
commit 602dcb11d7
2 changed files with 8 additions and 8 deletions

View File

@@ -51,6 +51,6 @@ async def add(a: int = 0, b: int = 0) -> int:
def x(b: tuple = (1, 2))->int:
return a + b
#: E252:11 E252:12
#: E252:11 E252:12 E231:8
def b(a:int=1):
pass