Skip to content

Commit

Permalink
Merge pull request #350 from keisheiled/patch-1
Browse files Browse the repository at this point in the history
add __init__.pyi stub Fixes #349
  • Loading branch information
bbayles committed Dec 3, 2019
2 parents 6870b81 + 59eaf92 commit bc1383a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions more_itertools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from more_itertools.more import * # noqa
from more_itertools.recipes import * # noqa
from .more import * # noqa
from .recipes import * # noqa
2 changes: 2 additions & 0 deletions more_itertools/__init__.pyi
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from .more import *
from .recipes import *

0 comments on commit bc1383a

Please sign in to comment.