Skip to content

Commit

Permalink
Remove unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
WyattBlue committed Sep 23, 2023
1 parent 5bc4583 commit 6c11ac3
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions auto_editor/lang/palet.py
Original file line number Diff line number Diff line change
Expand Up @@ -681,13 +681,6 @@ def vector_extend(vec: list, *more_vecs: list) -> None:
vec.extend(more)


def randrange(*args: int) -> int:
try:
return random.randrange(*args)
except ValueError:
raise MyError("randrange: got empty range")


def palet_map(proc: Proc, seq: str | list | range | NDArray) -> Any:
if type(seq) is str:
return str(map(proc.proc, seq))
Expand Down

0 comments on commit 6c11ac3

Please sign in to comment.