Skip to content

Commit 4223563

Browse files
committed
Remove shebang from module_utils file
1 parent 19f9998 commit 4223563

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

rmb_tests/roles/my_role/module_utils/network/myos/config/interfaces/interfaces.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#
22
# -*- coding: utf-8 -*-
33
# Copyright 2019 Red Hat
44
# GNU General Public License v3.0+

rmb_tests/roles/my_role/module_utils/network/myos/facts/facts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#
22
# -*- coding: utf-8 -*-
33
# Copyright 2019 Red Hat
44
# GNU General Public License v3.0+

rmb_tests/roles/my_role/module_utils/network/myos/facts/interfaces/interfaces.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#
22
# -*- coding: utf-8 -*-
33
# Copyright 2019 Red Hat
44
# GNU General Public License v3.0+

roles/scaffold_rm_facts/templates/module_utils/network_os/argspec/facts/facts.py.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#
22
# -*- coding: utf-8 -*-
33
# {{ rm['COPYRIGHT'] }}
44
# GNU General Public License v3.0+

roles/scaffold_rm_facts/templates/module_utils/network_os/argspec/resource/resource.py.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#
22
# -*- coding: utf-8 -*-
33
# {{ rm['COPYRIGHT'] }}
44
# GNU General Public License v3.0+

roles/scaffold_rm_facts/templates/module_utils/network_os/config/resource/resource.py.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#
22
# -*- coding: utf-8 -*-
33
# {{ rm['COPYRIGHT'] }}
44
# GNU General Public License v3.0+
@@ -30,7 +30,7 @@ class {{ resource|capitalize }}(ConfigBase):
3030
]
3131

3232
def __init__(self, module):
33-
super(Interfaces, self).__init__(module)
33+
super({{ resource|capitalize }}, self).__init__(module)
3434

3535
def get_{{ resource }}_facts(self):
3636
""" Get the 'facts' (the current configuration)

roles/scaffold_rm_facts/templates/module_utils/network_os/facts/facts.py.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#
22
# -*- coding: utf-8 -*-
33
# {{ rm['COPYRIGHT'] }}
44
# GNU General Public License v3.0+

roles/scaffold_rm_facts/templates/module_utils/network_os/facts/resource/resource.py.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#
22
# -*- coding: utf-8 -*-
33
# {{ rm['COPYRIGHT'] }}
44
# GNU General Public License v3.0+

0 commit comments

Comments
 (0)