Skip to content

Commit

Permalink
Fix CREATE_NO_WINDOW regression
Browse files Browse the repository at this point in the history
  • Loading branch information
DevilXD committed Nov 30, 2022
1 parent 900ae75 commit c80bccd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion twitch.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@
from time import time
from itertools import chain
from functools import partial
from subprocess import CREATE_NO_WINDOW
from collections import abc, deque, OrderedDict
from datetime import datetime, timedelta, timezone
from contextlib import suppress, asynccontextmanager
from typing import Any, Literal, Final, NoReturn, overload, cast, TYPE_CHECKING

if sys.platform == "win32":
from subprocess import CREATE_NO_WINDOW

import aiohttp
from yarl import URL
try:
Expand Down

0 comments on commit c80bccd

Please sign in to comment.