style: format code using ruff fix and format#196
Merged
holtskinner merged 1 commit intoa2aproject:mainfrom Jun 16, 2025
Merged
Conversation
Signed-off-by: Shingo OKAWA <shingo.okawa.g.h.c@gmail.com>
holtskinner
approved these changes
Jun 16, 2025
holtskinner
pushed a commit
that referenced
this pull request
Jun 24, 2025
# Description ### Formatting Notice It seemed that some files were not properly formatted by `nox -s format`, so I manually ran the formatting steps defined in `noxfile.py`: - `uv run no_implicit_optional --use-union-or .` - `uv run ruff check --fix-only --config .github/linters/.ruff.toml .` - `uv run ruff format --config .github/linters/.ruff.toml .` I **did not run**: - `uv run autoflake -i -r --remove-all-unused-imports .` but I have **confirmed there are no changes needed except for gRPC-generated sources**, which are intentionally excluded. Signed-off-by: Shingo OKAWA <shingo.okawa.g.h.c@gmail.com>
holtskinner
pushed a commit
that referenced
this pull request
Jun 30, 2025
It seemed that some files were not properly formatted by `nox -s format`, so I manually ran the formatting steps defined in `noxfile.py`: - `uv run no_implicit_optional --use-union-or .` - `uv run ruff check --fix-only --config .github/linters/.ruff.toml .` - `uv run ruff format --config .github/linters/.ruff.toml .` I **did not run**: - `uv run autoflake -i -r --remove-all-unused-imports .` but I have **confirmed there are no changes needed except for gRPC-generated sources**, which are intentionally excluded. Signed-off-by: Shingo OKAWA <shingo.okawa.g.h.c@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Thank you for opening a Pull Request!
Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
CONTRIBUTINGGuide.fix:which represents bug fixes, and correlates to a SemVer patch.feat:represents a new feature, and correlates to a SemVer minor.feat!:, orfix!:,refactor!:, etc., which represent a breaking change (indicated by the!) and will result in a SemVer major.nox -s formatfrom the repository root to format)Formatting Notice
It seemed that some files were not properly formatted by
nox -s format, so I manually ran the formatting steps defined innoxfile.py:uv run no_implicit_optional --use-union-or .uv run ruff check --fix-only --config .github/linters/.ruff.toml .uv run ruff format --config .github/linters/.ruff.toml .I did not run:
uv run autoflake -i -r --remove-all-unused-imports .but I have confirmed there are no changes needed except for gRPC-generated sources, which are intentionally excluded.