This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import re | |
| # run ./git-most.sh > most.txt before this script | |
| # adjust whitelist var if you only want to see changes to a certain filetype/file/path | |
| most_changed_paths = {} | |
| whitelist = '' # '.yml' | |
| with open('most.txt') as f: | |
| for line in f.readlines(): |