Skip to content

Commit

Permalink
Review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleFromNVIDIA committed Aug 23, 2024
1 parent 5686b88 commit ffaa5c8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,7 @@ profile = "black"
testpaths = [
"test",
]

[[tool.mypy.overrides]]
module = "bashlex.*"
ignore_missing_imports = true
2 changes: 1 addition & 1 deletion src/rapids_pre_commit_hooks/shell/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import bashlex # type: ignore
import bashlex

from ..lint import ExecutionContext, LintMain

Expand Down
2 changes: 1 addition & 1 deletion test/rapids_pre_commit_hooks/test_shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import bashlex # type: ignore
import bashlex

from rapids_pre_commit_hooks.lint import Linter
from rapids_pre_commit_hooks.shell.verify_conda_yes import VerifyCondaYesVisitor
Expand Down

0 comments on commit ffaa5c8

Please sign in to comment.