Remove print()

This commit is contained in:
Jamie Bliss 2019-08-28 14:34:20 -04:00
parent f0b49f0c81
commit d4ba3b5789

View file

@ -42,7 +42,6 @@ class MultipleVenvsWarning(RuntimeWarning):
def get_venv(vox, dirpath):
# Search up the directory tree until a venv is found, or none
for path in itertools.chain((dirpath,), dirpath.parents):
print(f"Checking {path}")
venvs = [
vox[p]
for p in events.autovox_policy.fire(path=path)