Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Ansible FreeIPA
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirror
Ansible FreeIPA
Commits
544474a5
Commit
544474a5
authored
4 years ago
by
Rafael Guterres Jeffman
Browse files
Options
Downloads
Patches
Plain Diff
Disable pylint's `super-with-arguments`.
We still need to support Python 2.
parent
e7b9e97a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
plugins/module_utils/ansible_freeipa_module.py
+1
-0
1 addition, 0 deletions
plugins/module_utils/ansible_freeipa_module.py
plugins/modules/ipadnszone.py
+1
-0
1 addition, 0 deletions
plugins/modules/ipadnszone.py
with
2 additions
and
0 deletions
plugins/module_utils/ansible_freeipa_module.py
+
1
−
0
View file @
544474a5
...
...
@@ -622,6 +622,7 @@ else:
ipa_param_mapping
=
None
def
__init__
(
self
,
*
args
,
**
kwargs
):
# pylint: disable=super-with-arguments
super
(
FreeIPABaseModule
,
self
).
__init__
(
*
args
,
**
kwargs
)
# Attributes to store kerberos credentials (if needed)
...
...
This diff is collapsed.
Click to expand it.
plugins/modules/ipadnszone.py
+
1
−
0
View file @
544474a5
...
...
@@ -504,6 +504,7 @@ class DNSZoneModule(FreeIPABaseModule):
self
.
add_ipa_command
(
"
dnszone_mod
"
,
zone_name
,
args
)
def
process_command_result
(
self
,
name
,
command
,
args
,
result
):
# pylint: disable=super-with-arguments
super
(
DNSZoneModule
,
self
).
process_command_result
(
name
,
command
,
args
,
result
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment