We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 890ede3 commit 10036baCopy full SHA for 10036ba
.pre-commit-config.yaml
@@ -33,6 +33,6 @@ repos:
33
- repo: https://github.com/astral-sh/ruff-pre-commit
34
rev: "v0.14.3"
35
hooks:
36
- - id: ruff
+ - id: ruff-check
37
args: [--fix]
38
- id: ruff-format
dosh/environments.py
@@ -14,7 +14,7 @@
14
15
def detect_shell_or_provide_default() -> str:
16
try:
17
- return detect_shell()[0]
+ return detect_shell()[0] # type: ignore
18
except ShellDetectionFailure:
19
pass
20
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "dosh-cli"
3
-version = "0.2.2"
+version = "0.2.3"
4
description = "Shell-independent task management CLI."
5
readme = "README.md"
6
license = "MIT"
0 commit comments