mirror of
				https://github.com/ansible-collections/community.general.git
				synced 2024-09-14 20:13:21 +02:00 
			
		
		
		
	This test data imports from modules which are only available via PluginLoader for this test case. So pylint doesn't know anything about them
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			415 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			415 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| #!/usr/bin/python
 | |
| # Most of these names are only available via PluginLoader so pylint doesn't
 | |
| # know they exist
 | |
| # pylint: disable=no-name-in-module
 | |
| from ansible.module_utils.basic import AnsibleModule
 | |
| from ansible.module_utils.json_utils import data
 | |
| from ansible.module_utils.mork import data as mork_data
 | |
| 
 | |
| results = {"json_utils": data, "mork": mork_data}
 | |
| 
 | |
| AnsibleModule(argument_spec=dict()).exit_json(**results)
 |