mirror of
https://github.com/kennethreitz-archive/krvim.git
synced 2026-06-05 23:40:18 +00:00
9 lines
150 B
Python
9 lines
150 B
Python
from textwrap import dedent
|
|
|
|
from complexity import compute_code_complexity
|
|
|
|
|
|
def complexity(code):
|
|
return compute_code_complexity(dedent(code))
|
|
|