Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#260)
Browse files Browse the repository at this point in the history
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
pre-commit-ci[bot] committed Jan 30, 2024
1 parent 0dcc051 commit 0d8beea
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repos:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
- repo: https://github.com/psf/black
rev: 23.12.1
rev: 24.1.1
hooks:
- id: black
- repo: https://github.com/tox-dev/tox-ini-fmt
Expand Down
1 change: 1 addition & 0 deletions src/platformdirs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Utilities for determining application-specific dirs. See <https://github.com/platformdirs/platformdirs> for details and
usage.
"""

from __future__ import annotations

import os
Expand Down
1 change: 1 addition & 0 deletions src/platformdirs/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Main entry point."""

from __future__ import annotations

from platformdirs import PlatformDirs, __version__
Expand Down
1 change: 1 addition & 0 deletions src/platformdirs/android.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Android."""

from __future__ import annotations

import os
Expand Down
1 change: 1 addition & 0 deletions src/platformdirs/api.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Base API."""

from __future__ import annotations

import os
Expand Down
1 change: 1 addition & 0 deletions src/platformdirs/macos.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""macOS."""

from __future__ import annotations

import os.path
Expand Down
1 change: 1 addition & 0 deletions src/platformdirs/unix.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Unix."""

from __future__ import annotations

import os
Expand Down
1 change: 1 addition & 0 deletions src/platformdirs/windows.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Windows."""

from __future__ import annotations

import ctypes
Expand Down

0 comments on commit 0d8beea

Please sign in to comment.