Skip to content

Format "mono" file

路志远请求将format-mono-with-black合并到main-jh

What does this MR do and why?

What

使用 Blackflake8 工具格式化 mono 文件。格式化的过程是工具自动完成的,除此之外没有任何改动。

调整的格式有:

  • 缩进空格数从 2 个改为 4 个
  • 优先使用双引号而不是单引号

Why

原始的 mono 文件没有和其他 Python 保持格式一致,最明显的问题是缩进的空格数,mono 使用 2 个空格,其他文件使用 4 个空格。

由于在之前 MR 中已经配置了 .pre-commit-config.yaml,今后再修改 mono 文件时,将会对它自动格式化。

Screenshots or screen recordings

Screenshots are required for UI changes, and strongly recommended for all other merge requests.

How to set up and validate locally

$ pip install flake8
$ flake8 mono  # 期待不会报错格式问题
$ black mono  # 期待不会报错格式问题

MR acceptance checklist

This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.

路志远 编辑于

合并请求报告

加载中