update mock imports

This commit is contained in:
Mike McLean 2025-07-07 15:32:52 -04:00
parent 3d42de2a99
commit c45a392146
2 changed files with 8 additions and 2 deletions

View file

@ -1,6 +1,9 @@
from __future__ import absolute_import
import mock
try:
from unittest import mock
except ImportError:
import mock
import six
from koji_cli.commands import handle_remove_group_pkg

View file

@ -1,6 +1,9 @@
from __future__ import absolute_import
import mock
try:
from unittest import mock
except ImportError:
import mock
import six
from koji_cli.commands import handle_remove_group_req