Skip to content

Instantly share code, notes, and snippets.

View ivlevdenis's full-sized avatar
🏠
Working from home

Ivlev Denis ivlevdenis

🏠
Working from home
View GitHub Profile
@ivlevdenis
ivlevdenis / args.py
Created January 27, 2016 15:27 — forked from dcramer/args.py
Python Standards (that I would change and enforce if I could)
# dont do this
this_function_name(foo, bar
baz)
# do this
cramers_version(
foo, bar, baz)
# allow this
cramers_version(foo, bar,