Should be good

This commit is contained in:
2022-11-04 22:22:56 +13:00
parent 6b905ef5e5
commit 7a0d604a5a
5 changed files with 20 additions and 8 deletions

View File

@@ -1,5 +1,10 @@
from watchgod import watch
from printer import printer
base = "./"
def main():
for changes in watch('./images'):
print(changes)
print(changes)
for change in changes:
printer(base + "/" + change[1])