Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/chardet/resultdict.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

5 statements  

1from typing import Optional, TypedDict 

2 

3 

4class ResultDict(TypedDict): 

5 encoding: Optional[str] 

6 confidence: float 

7 language: Optional[str]