Skip to content

Commit 10036ba

Browse files
committed
fix pre-release issues.
1 parent 890ede3 commit 10036ba

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ repos:
3333
- repo: https://github.com/astral-sh/ruff-pre-commit
3434
rev: "v0.14.3"
3535
hooks:
36-
- id: ruff
36+
- id: ruff-check
3737
args: [--fix]
3838
- id: ruff-format

dosh/environments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
def detect_shell_or_provide_default() -> str:
1616
try:
17-
return detect_shell()[0]
17+
return detect_shell()[0] # type: ignore
1818
except ShellDetectionFailure:
1919
pass
2020

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "dosh-cli"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
description = "Shell-independent task management CLI."
55
readme = "README.md"
66
license = "MIT"

0 commit comments

Comments
 (0)