fix acceptable pylint warnings

This commit is contained in:
Matthew Connelly 2019-05-06 13:01:10 +01:00
parent 9e0be50515
commit 0e4bc692ab
1 changed files with 4 additions and 0 deletions

View File

@ -1,8 +1,12 @@
#!/usr/bin/python2.7
import sys
#It shouldn't be a surprise that pjsua wouldn't be available on the local machine.
#pylint: disable=import-error
import pjsua as pj
from time import sleep
from os import listdir, getenv
#It also shouldn't be a surprise that certain members of the signal library wouldn't be available on certain OSes (Windows).
#pylint: disable=no-name-in-module
from signal import signal, SIGHUP, SIGINT, SIGTERM
from random import shuffle