From 7e880d47f11cbc23c3ab58ffd5aefc75d23c1ec1 Mon Sep 17 00:00:00 2001 From: timi <63904151+Boy-timi@users.noreply.github.com> Date: Sat, 3 Dec 2022 22:57:05 +0800 Subject: [PATCH] Update binary_search.py --- codes/python/chapter_searching/binary_search.py | 1 - 1 file changed, 1 deletion(-) diff --git a/codes/python/chapter_searching/binary_search.py b/codes/python/chapter_searching/binary_search.py index 915573f..0f37478 100644 --- a/codes/python/chapter_searching/binary_search.py +++ b/codes/python/chapter_searching/binary_search.py @@ -5,7 +5,6 @@ Author: timi (xisunyy@163.com) ''' import sys, os.path as osp - sys.path.append(osp.dirname(osp.dirname(osp.abspath(__file__)))) from include import *