File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ files = ["src"]
6565python_version = " 3.9"
6666disallow_untyped_defs = true
6767warn_return_any = true
68- warn_unused_ignores = true
68+ warn_unused_ignores = false
6969mypy_path = " typings"
7070
7171[tool .ruff ]
@@ -75,7 +75,7 @@ lint.extend-select = ["I"] # Enable ruffs isort rules (for compat with vscode r
7575
7676[tool .pytest .ini_options ]
7777minversion = " 6.0"
78- addopts = [" --cov" ]
78+ addopts = [" --cov" , " --color=yes " ]
7979
8080[tool .coverage ]
8181run.source = [" src" ]
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ def __iter__(self) -> Iterator[MPRemoteDirEntry]:
139139 # For python<=3.9: Override accessor class to handle micropython paths
140140 from pathlib import _NormalAccessor # type: ignore
141141
142- class _MPRemoteAccessor (_NormalAccessor ):
142+ class _MPRemoteAccessor (_NormalAccessor ): # type: ignore
143143 @staticmethod
144144 def stat (path : str ) -> os .stat_result :
145145 return MPRemotePath .board .fs_stat (path )
You can’t perform that action at this time.
0 commit comments