From 380eb6f59d82c281eb994fc097609621a24bbffb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@ericsson.com> Date: Mon, 12 Aug 2024 22:14:51 +0200 Subject: [PATCH] build fix --- snakehouse/satella.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/snakehouse/satella.py b/snakehouse/satella.py index 58a64f7..2453fcd 100644 --- a/snakehouse/satella.py +++ b/snakehouse/satella.py @@ -4,6 +4,7 @@ cut off the dependency and allow earlier Pythons to use snakehouse. """ import typing as tp +import os def _has_separator(path: str) -> bool: @@ -81,4 +82,4 @@ def split(path: str) -> tp.List[str]: data = list(os.path.split(data[0])) + data[1:] return dataator(data[0]): data = list(os.path.split(data[0])) + data[1:] - return data \ No newline at end of file + return data -- GitLab