change empty bodies from "pass" to "..."

CONTRIBUTING.md says to prefer ... Not the most impactful change but fixing
these will allow us to lint for it in the future and get a consistent style.
This commit is contained in:
Jelle Zijlstra
2017-03-16 07:44:45 -07:00
committed by Łukasz Langa
parent 17be26165d
commit 349ff59f33
16 changed files with 53 additions and 53 deletions

View File

@@ -129,7 +129,7 @@ class FrameType:
f_locals = ... # type: Dict[str, Any]
f_trace = ... # type: Callable[[], None]
def clear(self) -> None: pass
def clear(self) -> None: ...
class GetSetDescriptorType:
__name__ = ... # type: str