Upgrade to Mypy 0.470. Add colorama stub. Fix identation.

This commit is contained in:
Andris Raugulis
2017-01-23 19:34:06 +02:00
parent c9443e6e06
commit 54b0960502
5 changed files with 19 additions and 12 deletions

6
test/stubs/colorama.pyi Normal file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from typing import Optional
def init(autoreset: bool = False, convert: Optional[bool] = None, strip: Optional[bool] = None, wrap: bool = True) -> None: ...