Skip to content

Commit 21722cc

Browse files
committed
chore: remove unused file_path_exists
Signed-off-by: David Wallace <[email protected]>
1 parent 8ffa26a commit 21722cc

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

rdmo/core/imports.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
from collections import defaultdict
55
from dataclasses import dataclass, field
66
from os.path import join as pj
7-
from pathlib import Path
87
from random import randint
98
from typing import Callable, Iterable, List, Optional, Sequence, Tuple, Union
109

@@ -41,10 +40,6 @@ def handle_fetched_file(filedata):
4140
return tempfilename
4241

4342

44-
def file_path_exists(file_path):
45-
return Path(file_path).exists()
46-
47-
4843
def generate_tempfile_name():
4944
t = int(round(time.time() * 1000))
5045
r = randint(10000, 99999)

0 commit comments

Comments
 (0)