14 lines
223 B
Python
14 lines
223 B
Python
![]() |
#!/usr/bin/env python3
|
||
|
# encoding: utf-8
|
||
|
import sys
|
||
|
|
||
|
from flake8.main import git
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
sys.exit(
|
||
|
git.hook(
|
||
|
strict=True,
|
||
|
lazy=git.config_for('lazy'),
|
||
|
)
|
||
|
)
|