Bugfixes in install command

This commit is contained in:
2021-03-17 08:37:50 +01:00
parent f69500418e
commit a1cd939aa1
2 changed files with 6 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
import os
import sys
import time
from collections import Callable
from typing import Union, Optional
@@ -442,6 +443,8 @@ class Console:
for call in cls._hold_back_calls:
call.function(*call.args)
time.sleep(0.1)
return return_value
@classmethod