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 #260

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
4 changes: 2 additions & 2 deletions module_utils/ha_cluster_lsr/info/exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def export_corosync_cluster_name(corosync_conf_dict: Dict[str, Any]) -> str:


def export_corosync_transport(
corosync_conf_dict: Dict[str, Any]
corosync_conf_dict: Dict[str, Any],
) -> Dict[str, Any]:
"""
Export transport options in role format from corosync config in pcs format
Expand Down Expand Up @@ -115,7 +115,7 @@ def export_corosync_totem(corosync_conf_dict: Dict[str, Any]) -> Dict[str, Any]:


def export_corosync_quorum(
corosync_conf_dict: Dict[str, Any]
corosync_conf_dict: Dict[str, Any],
) -> Dict[str, Any]:
"""
Export quorum options in role format from corosync config in pcs format
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ configfile = {toxinidir}/pyproject.toml
# most tox-lsr tests locally or you will get errors like this:
# ansible-lint-collection: failed with ansible-lint is not allowed, use allowlist_externals to allow it
[testenv]
sitepackages=True
#sitepackages=True
setenv =
RUN_PYTEST_SETUP_MODULE_UTILS = true
RUN_PYLINT_SETUP_MODULE_UTILS = true
Loading