mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-16 01:38:09 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
10 lines
167 B
Python
Executable file
10 lines
167 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
import sys
|
|
|
|
def main():
|
|
print('Error: Please use `util/dev` to update lints')
|
|
return 1
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main())
|