Skip to content

Commit

Permalink
Fix flake8 complaint: line too long.
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrimesix committed Nov 15, 2024
1 parent ffac0aa commit ca3fe23
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ixdiagnose/plugins/ldap.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ class LDAP(Plugin):
FileMetric('ldap', '/etc/openldap/ldap.conf', extension='.conf'),
CommandMetric(
'sssd', [
Command(['grep', '-iv', 'ldap_default_authtok', '/etc/sssd/sssd.conf'], 'Config file', serializable=False),
Command(
['grep', '-iv', 'ldap_default_authtok', '/etc/sssd/sssd.conf'],
'Config file', serializable=False
),
]
),
MiddlewareClientMetric(
Expand Down

0 comments on commit ca3fe23

Please sign in to comment.