Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: fix python black formatting #759

Merged
merged 1 commit into from
Jan 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion module_utils/network_lsr/nm_provider.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
""" Support for NetworkManager aka the NM provider """
"""Support for NetworkManager aka the NM provider"""

from __future__ import absolute_import, division, print_function

Expand Down
3 changes: 1 addition & 2 deletions tests/ensure_provider_tests.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/usr/bin/env python3
# SPDX-License-Identifier: BSD-3-Clause
""" Check that there is a playbook to run all role tests with both providers
"""
"""Check that there is a playbook to run all role tests with both providers"""
# vim: fileencoding=utf8

import difflib
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test_network_connections.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
""" Tests for network_connections Ansible module """
"""Tests for network_connections Ansible module"""
# SPDX-License-Identifier: BSD-3-Clause
import copy
import itertools
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test_nm_provider.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
""" Tests for network_connections Ansible module """
"""Tests for network_connections Ansible module"""
# SPDX-License-Identifier: BSD-3-Clause

import os
Expand Down
Loading