trivial: add pylint disable comment for deprecated-module warning
gitea-wip/wcs/pipeline/head Build started... Details
gitea/wcs/pipeline/head Something is wrong with the build of this commit Details

This commit is contained in:
Frédéric Péters 2021-04-03 10:17:50 +02:00
parent 88c98d5a13
commit 74fed1f9b3
2 changed files with 2 additions and 3 deletions

View File

@ -13,7 +13,6 @@ disable=
consider-using-dict-comprehension,
consider-using-set-comprehension,
cyclic-import,
deprecated-module,
duplicate-code,
fixme,
global-variable-undefined,

View File

@ -17,10 +17,10 @@
from __future__ import print_function
import configparser
import optparse
import optparse # noqa pylint: disable=deprecated-module
import os
import sys
from optparse import make_option
from optparse import make_option # noqa pylint: disable=deprecated-module
__all__ = [
'Command',