Skip to content

Commit

Permalink
chore: remove unused file_path_exists
Browse files Browse the repository at this point in the history
Signed-off-by: David Wallace <david.wallace@tu-darmstadt.de>
  • Loading branch information
MyPyDavid committed Apr 5, 2024
1 parent 8ffa26a commit 21722cc
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions rdmo/core/imports.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
from collections import defaultdict
from dataclasses import dataclass, field
from os.path import join as pj
from pathlib import Path
from random import randint
from typing import Callable, Iterable, List, Optional, Sequence, Tuple, Union

Expand Down Expand Up @@ -41,10 +40,6 @@ def handle_fetched_file(filedata):
return tempfilename


def file_path_exists(file_path):
return Path(file_path).exists()


def generate_tempfile_name():
t = int(round(time.time() * 1000))
r = randint(10000, 99999)
Expand Down

0 comments on commit 21722cc

Please sign in to comment.