Skip to content

Commit 1c17417

Browse files
committed
puppet-lint: fix relative_classname_inclusion
1 parent caa53c0 commit 1c17417

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

manifests/pip/bootstrap.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
Variant[Boolean, String] $manage_python = false,
1414
) inherits ::python::params {
1515
if $manage_python {
16-
include ::python
16+
include python
1717
} else {
1818
$target_src_pip_path = $facts['os']['family'] ? {
1919
'AIX' => '/opt/freeware/bin',

manifests/pyvenv.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
$environment = [],
3434
) {
3535

36-
include ::python
36+
include python
3737

3838
if $ensure == 'present' {
3939
$python_version = $version ? {

manifests/requirements.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
$timeout = 1800,
4444
) {
4545

46-
include ::python
46+
include python
4747

4848
if $virtualenv == 'system' and ($owner != 'root' or $group != 'root') {
4949
fail('python::pip: root user must be used when virtualenv is system')

manifests/virtualenv.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
$extra_pip_args = '',
5252
$virtualenv = undef
5353
) {
54-
include ::python
54+
include python
5555
$python_provider = getparam(Class['python'], 'provider')
5656
$anaconda_path = getparam(Class['python'], 'anaconda_install_path')
5757

0 commit comments

Comments
 (0)