post_gen_project   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 4
dl 0
loc 6
rs 10
c 0
b 0
f 0
1
"""Simple post-gen hook for testing project folder and custom file creation."""
2
3
print('pre generation hook')
4
f = open('python_post.txt', 'w')
5
f.close()
6