Skip to content

Commit c9e4c4f

Browse files
authored
Merge pull request #306 from corenting/chore/update-ruff
chore: update ruff
2 parents a1cb76c + 83ae5d8 commit c9e4c4f

File tree

4 files changed

+136
-153
lines changed

4 files changed

+136
-153
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ PYTHON=poetry run
33
.PHONY: format
44
format:
55
$(PYTHON) ruff format immutabledict tests
6-
$(PYTHON) ruff --fix immutabledict tests
6+
$(PYTHON) ruff check --fix immutabledict tests
77

88
.PHONY: style
99
style:
1010
$(PYTHON) ruff format --check immutabledict tests
11-
$(PYTHON) ruff immutabledict tests
11+
$(PYTHON) ruff check immutabledict tests
1212
$(PYTHON) mypy -- immutabledict tests
1313

1414
.PHONY: test

immutabledict/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Implementation of the :class:`immutabledict` and :class:`ImmutableOrderedDict` classes."""
2+
23
from __future__ import annotations
34

45
from collections import OrderedDict

0 commit comments

Comments
 (0)