Skip to content

Commit 6efeb95

Browse files
author
David Hayes
committed
Fix linting issues from voxpupuli#289
1 parent b5854fc commit 6efeb95

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

tests/gunicorn.pp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
bind => 'unix:/tmp/gunicorn.socket',
1313
environment => 'prod',
1414
appmodule => 'app:app',
15-
osenv => { 'DBHOST' => 'dbserver.example.com' },
15+
osenv => {
16+
'DBHOST' => 'dbserver.example.com'
17+
},
1618
timeout => 30,
1719
template => 'python/gunicorn.erb',
1820
}

tests/pyvenv.pp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
version => '3',
44
}
55

6-
python::pyvenv { "/opt/uwsgi":
6+
python::pyvenv { '/opt/uwsgi':
77
}
88

9-
python::pip { "uwsgi":
10-
ensure => "latest",
11-
virtualenv => "/opt/uwsgi"
9+
python::pip { 'uwsgi':
10+
ensure => 'latest',
11+
virtualenv => '/opt/uwsgi'
1212
}

0 commit comments

Comments
 (0)