Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#13)
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] authored Mar 14, 2024
1 parent 8c030d5 commit b050e99
Show file tree
Hide file tree
Showing 5 changed files with 5 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 @@ -4,7 +4,7 @@ repos:
hooks:
- id: prettier
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.2.2
rev: v0.3.2
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
Expand Down
1 change: 1 addition & 0 deletions src/prelude_runner/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Prelude Runner."""

from .core import Preludes, execute

__all__ = ["execute", "Preludes"]
1 change: 1 addition & 0 deletions src/prelude_runner/cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Command line parsing and execution."""

from __future__ import annotations

from argparse import ArgumentParser
Expand Down
1 change: 1 addition & 0 deletions src/prelude_runner/core.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Main exports."""

from __future__ import annotations

from dataclasses import dataclass
Expand Down
1 change: 1 addition & 0 deletions src/prelude_runner/types.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Types more specific than NotebookNode."""

from __future__ import annotations

from typing import Any, Literal, Protocol, TypedDict
Expand Down

0 comments on commit b050e99

Please sign in to comment.