mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-17 11:25:55 +08:00
Mostly whitespace, line width and other spacing changes. Also, removes use of deprecated has_key in favor of `in` Going forward new patches should pass running `flake8` before submission.
11 lines
167 B
Python
11 lines
167 B
Python
BANNER = """
|
|
Zipline {version}
|
|
Released under BSD3
|
|
""".strip()
|
|
|
|
VERSION = (0, 0, 1, 'dev')
|
|
|
|
|
|
def pretty_version():
|
|
return BANNER.format(version='.'.join(VERSION))
|