unneeded dependency

This commit is contained in:
boyska 2022-03-15 18:09:17 +01:00
parent e5eb477475
commit 94e5cc5293

View file

@ -27,8 +27,6 @@ from pathlib import Path
from subprocess import Popen, check_output, CalledProcessError
from multiprocessing import Process, Pipe
import pyinotify
def rotate(lst: list, n: int) -> list:
return lst[n:] + lst[:n]