Merge branch '2.1.3' into 2.0

This commit is contained in:
Takeshi KOMIYA 2019-06-29 01:50:58 +09:00
commit bf45fc1dd2
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ extras_require = {
'html5lib',
'flake8>=3.5.0',
'flake8-import-order',
'mypy>=0.710',
'mypy>=0.711',
'docutils-stubs',
],
}

View File

@ -123,7 +123,7 @@ def isenumattribute(x: Any) -> bool:
def ispartial(obj: Any) -> bool:
"""Check if the object is partial."""
return isinstance(obj, (partial, partialmethod)) # type: ignore
return isinstance(obj, (partial, partialmethod))
def isclassmethod(obj: Any) -> bool: