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

Change occurrences of format() to f-strings #439

Merged
merged 4 commits into from
Aug 21, 2024

Conversation

DimitriPapadopoulos
Copy link
Contributor

Also change one occurrence of % to format(), as changing to an f-string would result in a very long line.

TODO:

  • Unit tests and/or doctests in docstrings
  • Tests pass locally
  • Docstrings and API docs for any new/modified user-facing classes and functions
  • Changes documented in docs/release.rst
  • Docs build locally
  • GitHub Actions CI passes
  • Test coverage to 100% (Codecov passes)

@codecov
Copy link

codecov bot commented May 28, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 99.91%. Comparing base (8b53fc1) to head (367e575).
Report is 4 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #439      +/-   ##
==========================================
- Coverage   99.91%   99.91%   -0.01%     
==========================================
  Files          59       59              
  Lines        2339     2334       -5     
==========================================
- Hits         2337     2332       -5     
  Misses          2        2              
Files Coverage Δ
numcodecs/abc.py 100.00% <100.00%> (ø)
numcodecs/astype.py 100.00% <100.00%> (ø)
numcodecs/categorize.py 100.00% <100.00%> (ø)
numcodecs/compat.py 100.00% <100.00%> (ø)
numcodecs/delta.py 100.00% <100.00%> (ø)
numcodecs/fixedscaleoffset.py 100.00% <100.00%> (ø)
numcodecs/json.py 96.07% <100.00%> (-0.08%) ⬇️
numcodecs/lzma.py 100.00% <100.00%> (ø)
numcodecs/msgpacks.py 100.00% <100.00%> (ø)
numcodecs/ndarray_like.py 100.00% <100.00%> (ø)
... and 6 more

@dstansby
Copy link
Contributor

Looks good in theory, but is there a ruff rule (or similar) we can enable to automate making sure this change stays in the future?

@DimitriPapadopoulos
Copy link
Contributor Author

DimitriPapadopoulos commented Aug 10, 2024

I have enabled the relevant ruff rules UP.

A small part of the changes is manual, because ruff currently doesn't catch all issues.

c-blosc Outdated Show resolved Hide resolved
UP006 Use `tuple` instead of `Tuple` for type annotation

UP035 `typing.Dict` is deprecated, use `dict` instead
UP035 `typing.Tuple` is deprecated, use `tuple` instead
UP035 `typing.Type` is deprecated, use `type` instead
@dstansby dstansby merged commit 4784a52 into zarr-developers:main Aug 21, 2024
26 checks passed
@DimitriPapadopoulos DimitriPapadopoulos deleted the f-strings branch August 21, 2024 10:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants