Skip to content

Commit 19842e1

Browse files
Create string.pyi
1 parent f978db2 commit 19842e1

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from typing import Optional
2+
3+
class int: pass
4+
class str: pass
5+
def count(
6+
self,
7+
substr: str,
8+
start: Optional[int] = None,
9+
end: Optional[int] = None,
10+
) -> int: pass

0 commit comments

Comments
 (0)