Remove temp files after 074 completes.

- Remove unused imports.

Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
This commit is contained in:
Keith Rothman 2020-02-10 12:23:13 -08:00
parent 3f435ea30b
commit 4691ba3183
2 changed files with 2 additions and 2 deletions

View File

@ -23,6 +23,8 @@ run:
$(MAKE) clean $(MAKE) clean
$(MAKE) database $(MAKE) database
$(MAKE) pushdb $(MAKE) pushdb
# Clean up intermediate files after successful pushdb.
find build -name "*.json5" -delete
touch run.ok touch run.ok
clean: clean:

View File

@ -1,8 +1,6 @@
import os
import shutil import shutil
import sys import sys
import subprocess import subprocess
import signal
from multiprocessing import Pool from multiprocessing import Pool
from itertools import chain from itertools import chain
import argparse import argparse