mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-02-17 14:38:46 +00:00
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())
|