Skip to content

Commit

Permalink
pylint: disable deprecated-module message
Browse files Browse the repository at this point in the history
Related: https://pagure.io/freeipa/issue/9278

Signed-off-by: Florence Blanc-Renaud <flo@redhat.com>
  • Loading branch information
flo-renaud authored and stanislavlevin committed Dec 19, 2022
1 parent aa1bb7e commit a399d17
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion install/migration/migration.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"""
from __future__ import absolute_import

import cgi
import cgi # pylint: disable=deprecated-module
import errno
import logging
import os.path
Expand Down
2 changes: 1 addition & 1 deletion ipaserver/install/httpinstance.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import glob
import errno
import shlex
import pipes
import pipes # pylint: disable=deprecated-module
import shutil
import tempfile

Expand Down
2 changes: 1 addition & 1 deletion ipatests/pytest_ipa/integration/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
import subprocess
import tempfile
import time
from pipes import quote
from pipes import quote # pylint: disable=deprecated-module
import configparser
from contextlib import contextmanager
from pkg_resources import parse_version
Expand Down

0 comments on commit a399d17

Please sign in to comment.