Skip to content

Commit

Permalink
add annotation from future
Browse files Browse the repository at this point in the history
  • Loading branch information
xmnlab committed Sep 28, 2024
1 parent 7d3d623 commit c126218
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/envers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
"""Envers."""
# mypy: disable-error-code="attr-defined"

from __future__ import annotations

from importlib import metadata as importlib_metadata


Expand Down
2 changes: 2 additions & 0 deletions src/envers/__main__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""The definition of the action for `python -m` command."""

from __future__ import annotations

from envers.cli import app

if __name__ == "__main__":
Expand Down
2 changes: 2 additions & 0 deletions tests/test_core.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""Tests for envers package."""

from __future__ import annotations

import copy
import os
import tempfile
Expand Down

0 comments on commit c126218

Please sign in to comment.