[modules/redshift] Make requests module optional
This commit is contained in:
parent
c2c195bf9c
commit
15cd958c78
1 changed files with 4 additions and 1 deletions
|
@ -13,7 +13,10 @@ Parameters:
|
|||
"""
|
||||
|
||||
import threading
|
||||
try:
|
||||
import requests
|
||||
except ImportError:
|
||||
pass
|
||||
|
||||
import bumblebee.input
|
||||
import bumblebee.output
|
||||
|
|
Loading…
Reference in a new issue