Fix invalid escape sequence in binary_search_tree.py (#1920)
* Fix invalid escape sequence in binary_search_tree.py
data_structures/binary_tree/binary_search_tree.py:156
/home/travis/build/TheAlgorithms/Python/data_structures/binary_tree/binary_search_tree.py:156: DeprecationWarning: invalid escape sequence \
* fixup! Format Python code with psf/black push
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
This commit is contained in:
@@ -78,7 +78,7 @@ def test_sepia():
|
||||
assert sepia.all()
|
||||
|
||||
|
||||
def test_burkes(file_path: str="digital_image_processing/image_data/lena_small.jpg"):
|
||||
def test_burkes(file_path: str = "digital_image_processing/image_data/lena_small.jpg"):
|
||||
burkes = bs.Burkes(imread(file_path, 1), 120)
|
||||
burkes.process()
|
||||
assert burkes.output_img.any()
|
||||
|
||||
Reference in New Issue
Block a user