Skip to content

Commit

Permalink
Merge pull request #7 from gauge-sh/release-0/10/3
Browse files Browse the repository at this point in the history
release 0/10/3
  • Loading branch information
caelean authored Aug 28, 2024
2 parents 8043957 + 54b5aaa commit 110e535
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bundled/tool/tach_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def run_tach_check(argv: list[str], path: str):
exclude_paths = project_config.exclude

checked_result: CheckResult = check(
project_root=root, project_config=project_config
project_root=root, project_config=project_config, exclude_paths=exclude_paths
)
for boundary_error in checked_result.errors:
# Hack for now - update error message displayed to user
Expand Down
6 changes: 3 additions & 3 deletions src/test/python_tests/lsp_test_client/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def __enter__(self):
return self

def __exit__(self, typ, value, _tb):
if self._sub.returncode is None:
if self._sub.returncode is None: # pyright: ignore
self.shutdown(True)
try:
self._sub.terminate() # pyright: ignore
Expand All @@ -91,8 +91,8 @@ def __exit__(self, typ, value, _tb):
self._thread_pool.shutdown()

def _monitor_subprocess(self):
self._sub.wait()
if self._sub.returncode != 0:
self._sub.wait() # pyright: ignore
if self._sub.returncode != 0: # pyright: ignore
self.server_initialized.set()

def initialize(
Expand Down

0 comments on commit 110e535

Please sign in to comment.