add type stubs (#5932)

This commit is contained in:
Louis Duperier
2021-08-18 10:02:14 -04:00
committed by GitHub
parent 34b3f0bf7c
commit bfff7d763b
2 changed files with 5 additions and 0 deletions

View File

@@ -0,0 +1 @@
version = "0.5"

View File

@@ -0,0 +1,4 @@
from typing import Hashable, Iterable
def eval(a: Iterable[Hashable], b: Iterable[Hashable]) -> int: ...
def distance(a: Iterable[Hashable], b: Iterable[Hashable]) -> int: ...