mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Drop duplicate imports from apt_repository module (#36320)
* Drop duplicate imports from apt_repository module * Drop json import from apt_repository module
This commit is contained in:
parent
6e096cb0c9
commit
3a097063d9
1 changed files with 1 additions and 5 deletions
|
@ -108,11 +108,7 @@ import os
|
||||||
import re
|
import re
|
||||||
import sys
|
import sys
|
||||||
import tempfile
|
import tempfile
|
||||||
import json
|
|
||||||
# import module snippets
|
|
||||||
from ansible.module_utils.basic import AnsibleModule
|
|
||||||
from ansible.module_utils.urls import fetch_url
|
|
||||||
from ansible.module_utils._text import to_native
|
|
||||||
try:
|
try:
|
||||||
import apt
|
import apt
|
||||||
import apt_pkg
|
import apt_pkg
|
||||||
|
|
Loading…
Reference in a new issue