Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: runserver.spec

Issue 29756692: Noissue - Adapt best practices for trailing commas (cms) (Closed)
Patch Set: More cleanup, added flake8-commas extension Created April 19, 2018, 2:19 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cms/utils.py ('k') | tests/test_additional_paths.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # PyInstaller spec, run "pyinstaller runserver.spec" from repository root to bui ld 1 # PyInstaller spec, run "pyinstaller runserver.spec" from repository root to bui ld
2 2
3 a = Analysis( 3 a = Analysis(
4 ['cms/bin/test_server.py'], 4 ['cms/bin/test_server.py'],
5 pathex=['.'], 5 pathex=['.'],
6 hiddenimports=[ 6 hiddenimports=[
7 'markdown.extensions.extra', 7 'markdown.extensions.extra',
8 'markdown.extensions.smart_strong', 8 'markdown.extensions.smart_strong',
9 'markdown.extensions.fenced_code', 9 'markdown.extensions.fenced_code',
10 'markdown.extensions.footnotes', 10 'markdown.extensions.footnotes',
(...skipping 22 matching lines...) Expand all
33 exe = EXE( 33 exe = EXE(
34 pyz, 34 pyz,
35 a.scripts, 35 a.scripts,
36 a.binaries, 36 a.binaries,
37 a.zipfiles, 37 a.zipfiles,
38 a.datas, 38 a.datas,
39 name='runserver', 39 name='runserver',
40 debug=False, 40 debug=False,
41 strip=None, 41 strip=None,
42 upx=False, 42 upx=False,
43 console=True 43 console=True,
44 ) 44 )
OLDNEW
« no previous file with comments | « cms/utils.py ('k') | tests/test_additional_paths.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld