]> git.lizzy.rs Git - rust.git/blob - util/update_lints.py
Auto merge of #3645 - phansch:remove_copyright_headers, r=oli-obk
[rust.git] / util / update_lints.py
1 #!/usr/bin/env python
2
3 import sys
4
5 def main():
6     print('Error: Please use `util/dev` to update lints')
7     return 1
8
9 if __name__ == '__main__':
10     sys.exit(main())