Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef51288 commit a9c6a37Copy full SHA for a9c6a37
.gitignore
@@ -41,3 +41,6 @@ nosetests.xml
41
.mr.developer.cfg
42
.project
43
.pydevproject
44
+
45
+# PyCharm
46
+.idea
.pre-commit-hooks.yaml
@@ -0,0 +1,14 @@
1
+- id: futurize
2
+ name: futurize
3
+ description: Futurize your Py2 code to ensure it is runnable on Py3.
4
+ language: python
5
+ types: [python]
6
+ entry: futurize -w -n --no-diffs
7
+ args: [--stage1]
8
9
+- id: pasteurize
10
+ name: pasteurize
11
+ description: Pasteurize your Py3 code to ensure it is runnable on Py2.
12
13
14
+ entry: pasteurize -w -n --no-diffs
0 commit comments