Load the hash value from a specified input file.
(input_file)
| 87 | |
| 88 | |
| 89 | def load_checksum_file(input_file): |
| 90 | """Load the hash value from a specified input file.""" |
| 91 | with open(input_file, "r") as f: |
| 92 | return f.readline().strip() |
| 93 | |
| 94 | |
| 95 | def minify_css(c): |