Skip to content

Commit

Permalink
chore: update ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
corenting committed Mar 5, 2024
1 parent a1cb76c commit 83ae5d8
Show file tree
Hide file tree
Showing 4 changed files with 136 additions and 153 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ PYTHON=poetry run
.PHONY: format
format:
$(PYTHON) ruff format immutabledict tests
$(PYTHON) ruff --fix immutabledict tests
$(PYTHON) ruff check --fix immutabledict tests

.PHONY: style
style:
$(PYTHON) ruff format --check immutabledict tests
$(PYTHON) ruff immutabledict tests
$(PYTHON) ruff check immutabledict tests
$(PYTHON) mypy -- immutabledict tests

.PHONY: test
Expand Down
1 change: 1 addition & 0 deletions immutabledict/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Implementation of the :class:`immutabledict` and :class:`ImmutableOrderedDict` classes."""

from __future__ import annotations

from collections import OrderedDict
Expand Down
Loading

0 comments on commit 83ae5d8

Please sign in to comment.