From 53b211a9271d40d031e9dba70ac4ad01a787829d Mon Sep 17 00:00:00 2001 From: farrell Date: Wed, 27 Mar 2019 14:31:52 -0400 Subject: [PATCH] removed hidden_files function since it is being rewritten. --- validator.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/validator.py b/validator.py index 5fc8da0..39c60bb 100755 --- a/validator.py +++ b/validator.py @@ -7,10 +7,6 @@ # Rule: Does every file have an extension? # Rule: Every file is at least zero bytes # Rule: There are no hidden files here -def findHidden(f): #I'm assuming here that validator() is looping through files - if f.startswith("."): - print("!!!!! HIDDEN FILE FOUND !!!!!, ", f) - # Rule: No filename has any sort of whitespace # What input does this need? # What should the output be?