Skip to content

Commit e35726f

Browse files
committed
Fix some missing type information
This is a first stab at completing type information for pyTwitchAPI to make mypy shut up when I'm using pyTwitchAPI. As this is my first contribution, I'm limiting this to low hanging fruit and a few of the files. If all goes well I'll do more. Signed-off-by: Cmdr. Emily <68452184+cmdremily@users.noreply.github.com>
1 parent 22558c1 commit e35726f

5 files changed

Lines changed: 98 additions & 96 deletions

File tree

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Copyright (c) 2022. Lena "Teekeks" During <info@teawork.de>
2+
from platform import python_version
23
from setuptools import setup, find_packages
34

45
version = ''
@@ -25,6 +26,7 @@
2526
setup(
2627
packages=find_packages(),
2728
version=version,
29+
python_version="3.7",
2830
keywords=['twitch', 'twitch.tv', 'chat', 'bot', 'event sub', 'EventSub', 'helix', 'api'],
2931
install_requires=[
3032
'aiohttp>=3.9.3',

0 commit comments

Comments
 (0)