From 30136e3cf9405c51ff040f7760575d7c52c980cc Mon Sep 17 00:00:00 2001 From: Pavel Kirienko Date: Fri, 24 Feb 2023 21:13:55 +0200 Subject: [PATCH] Fix https://github.com/OpenCyphal/yakut/issues/68 --- yakut/main.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/yakut/main.py b/yakut/main.py index 2360a6e..30c3252 100644 --- a/yakut/main.py +++ b/yakut/main.py @@ -3,7 +3,6 @@ # Author: Pavel Kirienko from __future__ import annotations -import os import sys import asyncio import functools @@ -199,7 +198,6 @@ def _mk_aliases(item: Any) -> set[str]: help=f""" In order to use compiled DSDL namespaces, the directories that contain compilation outputs need to be specified using this option. -The current working directory does not need to be specified explicitly. Examples: @@ -242,7 +240,6 @@ def _click_main( """ _configure_logging(verbose) # This should be done in the first order to ensure that we log things correctly. - path = (os.getcwd(), *path) _logger.debug("Path: %r", path) for p in path: sys.path.append(str(p))