fix syntax errors

This commit is contained in:
Matthias Kramm
2015-09-15 15:47:41 -07:00
parent 6019cad152
commit 6be8de84e9
4 changed files with 9 additions and 9 deletions

View File

@@ -3,7 +3,7 @@
from typing import Optional, Any
class Random(object):
def __init__(self, seed: x: object = None) -> None: ...
def __init__(self, seed: x, object = None) -> None: ...
def seed(self, x: object = None) -> None: ...
def getstate(self) -> tuple: ...
def setstate(self, state: tuple) -> None: ...