fixing bug in helpers.is_path
This commit is contained in:
@@ -40,4 +40,4 @@ def get_punc_after(word):
|
|||||||
|
|
||||||
|
|
||||||
def is_path(string):
|
def is_path(string):
|
||||||
return '/' in string and Path(string).exists()
|
return Path(string).exists()
|
||||||
|
|||||||
Reference in New Issue
Block a user