Skip to content

Commit 0f8a09e

Browse files
committed
Reorganize imports due to ansible-community/antsibull-nox#136.
1 parent 3ce86fb commit 0f8a09e

File tree

78 files changed

+132
-41
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+132
-41
lines changed

plugins/action/openssl_privatekey_pipe.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
import typing as t
99

1010
from ansible.module_utils.common.text.converters import to_bytes
11+
1112
from ansible_collections.community.crypto.plugins.module_utils._crypto.basic import (
1213
OpenSSLObjectError,
1314
)

plugins/filter/gpg_fingerprint.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343

4444
from ansible.errors import AnsibleFilterError
4545
from ansible.module_utils.common.text.converters import to_bytes
46+
4647
from ansible_collections.community.crypto.plugins.module_utils._gnupg.cli import (
4748
GPGError,
4849
get_fingerprint_from_bytes,

plugins/filter/openssl_csr_info.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,7 @@
278278

279279
from ansible.errors import AnsibleFilterError
280280
from ansible.module_utils.common.text.converters import to_bytes, to_text
281+
281282
from ansible_collections.community.crypto.plugins.module_utils._crypto.basic import (
282283
OpenSSLObjectError,
283284
)

plugins/filter/openssl_privatekey_info.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@
150150

151151
from ansible.errors import AnsibleFilterError
152152
from ansible.module_utils.common.text.converters import to_bytes, to_text
153+
153154
from ansible_collections.community.crypto.plugins.module_utils._crypto.basic import (
154155
OpenSSLObjectError,
155156
)

plugins/filter/openssl_publickey_info.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@
127127

128128
from ansible.errors import AnsibleFilterError
129129
from ansible.module_utils.common.text.converters import to_bytes
130+
130131
from ansible_collections.community.crypto.plugins.module_utils._crypto.basic import (
131132
OpenSSLObjectError,
132133
)

plugins/filter/parse_serial.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343

4444
from ansible.errors import AnsibleFilterError
4545
from ansible.module_utils.common.text.converters import to_text
46+
4647
from ansible_collections.community.crypto.plugins.module_utils._serial import (
4748
parse_serial,
4849
)

plugins/filter/split_pem.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242

4343
from ansible.errors import AnsibleFilterError
4444
from ansible.module_utils.common.text.converters import to_text
45+
4546
from ansible_collections.community.crypto.plugins.module_utils._crypto.pem import (
4647
split_pem_list,
4748
)

plugins/filter/to_serial.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
import typing as t
4343

4444
from ansible.errors import AnsibleFilterError
45+
4546
from ansible_collections.community.crypto.plugins.module_utils._serial import to_serial
4647

4748

plugins/filter/x509_certificate_info.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,7 @@
312312

313313
from ansible.errors import AnsibleFilterError
314314
from ansible.module_utils.common.text.converters import to_bytes, to_text
315+
315316
from ansible_collections.community.crypto.plugins.module_utils._crypto.basic import (
316317
OpenSSLObjectError,
317318
)

plugins/filter/x509_crl_info.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@
159159

160160
from ansible.errors import AnsibleFilterError
161161
from ansible.module_utils.common.text.converters import to_bytes, to_text
162+
162163
from ansible_collections.community.crypto.plugins.module_utils._crypto.basic import (
163164
OpenSSLObjectError,
164165
)

0 commit comments

Comments
 (0)