mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix wildcard import in galaxy/token.py
This commit is contained in:
parent
87a192fe66
commit
6456891053
1 changed files with 2 additions and 1 deletions
|
@ -22,8 +22,9 @@ from __future__ import (absolute_import, division, print_function)
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
from stat import S_IRUSR, S_IWUSR
|
||||||
|
|
||||||
import yaml
|
import yaml
|
||||||
from stat import *
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from __main__ import display
|
from __main__ import display
|
||||||
|
|
Loading…
Reference in a new issue