diff --git a/tpro/helpers.py b/tpro/helpers.py index e7d1ad2..75036e3 100644 --- a/tpro/helpers.py +++ b/tpro/helpers.py @@ -40,4 +40,4 @@ def get_punc_after(word): def is_path(string): - return '/' in string and Path(string).exists() + return Path(string).exists()