Fix flake8 errors

This commit is contained in:
Glenn Johnson 2016-06-07 23:37:49 -05:00
parent 738720a000
commit ad0cfa41aa
13 changed files with 26 additions and 26 deletions

View file

@ -41,5 +41,5 @@ class RR6(Package):
extends('R')
def install(self, spec, prefix):
R('CMD', 'INSTALL',
'--library={0}'.format(self.module.r_lib_dir), self.stage.source_path)
R('CMD', 'INSTALL', '--library={0}'.format(self.module.r_lib_dir),
self.stage.source_path)

View file

@ -46,5 +46,5 @@ class RCurl(Package):
depends_on('curl')
def install(self, spec, prefix):
R('CMD', 'INSTALL',
'--library={0}'.format(self.module.r_lib_dir), self.stage.source_path)
R('CMD', 'INSTALL', '--library={0}'.format(self.module.r_lib_dir),
self.stage.source_path)

View file

@ -45,5 +45,5 @@ class RDevtools(Package):
depends_on('r-withr')
def install(self, spec, prefix):
R('CMD', 'INSTALL',
'--library={0}'.format(self.module.r_lib_dir), self.stage.source_path)
R('CMD', 'INSTALL', '--library={0}'.format(self.module.r_lib_dir),
self.stage.source_path)

View file

@ -51,5 +51,5 @@ class RDigest(Package):
extends('R')
def install(self, spec, prefix):
R('CMD', 'INSTALL',
'--library={0}'.format(self.module.r_lib_dir), self.stage.source_path)
R('CMD', 'INSTALL', '--library={0}'.format(self.module.r_lib_dir),
self.stage.source_path)

View file

@ -41,5 +41,5 @@ class RGit2r(Package):
depends_on('openssl')
def install(self, spec, prefix):
R('CMD', 'INSTALL',
'--library={0}'.format(self.module.r_lib_dir), self.stage.source_path)
R('CMD', 'INSTALL', '--library={0}'.format(self.module.r_lib_dir),
self.stage.source_path)

View file

@ -44,5 +44,5 @@ class RHttr(Package):
depends_on('r-R6')
def install(self, spec, prefix):
R('CMD', 'INSTALL',
'--library={0}'.format(self.module.r_lib_dir), self.stage.source_path)
R('CMD', 'INSTALL', '--library={0}'.format(self.module.r_lib_dir),
self.stage.source_path)

View file

@ -45,5 +45,5 @@ class RJsonlite(Package):
extends('R')
def install(self, spec, prefix):
R('CMD', 'INSTALL',
'--library={0}'.format(self.module.r_lib_dir), self.stage.source_path)
R('CMD', 'INSTALL', '--library={0}'.format(self.module.r_lib_dir),
self.stage.source_path)

View file

@ -39,5 +39,5 @@ class RMemoise(Package):
depends_on('r-digest')
def install(self, spec, prefix):
R('CMD', 'INSTALL',
'--library={0}'.format(self.module.r_lib_dir), self.stage.source_path)
R('CMD', 'INSTALL', '--library={0}'.format(self.module.r_lib_dir),
self.stage.source_path)

View file

@ -37,5 +37,5 @@ class RMime(Package):
extends('R')
def install(self, spec, prefix):
R('CMD', 'INSTALL',
'--library={0}'.format(self.module.r_lib_dir), self.stage.source_path)
R('CMD', 'INSTALL', '--library={0}'.format(self.module.r_lib_dir),
self.stage.source_path)

View file

@ -47,5 +47,5 @@ class ROpenssl(Package):
depends_on('openssl')
def install(self, spec, prefix):
R('CMD', 'INSTALL',
'--library={0}'.format(self.module.r_lib_dir), self.stage.source_path)
R('CMD', 'INSTALL', '--library={0}'.format(self.module.r_lib_dir),
self.stage.source_path)

View file

@ -37,5 +37,5 @@ class RRstudioapi(Package):
extends('R')
def install(self, spec, prefix):
R('CMD', 'INSTALL',
'--library={0}'.format(self.module.r_lib_dir), self.stage.source_path)
R('CMD', 'INSTALL', '--library={0}'.format(self.module.r_lib_dir),
self.stage.source_path)

View file

@ -37,5 +37,5 @@ class RWhisker(Package):
extends('R')
def install(self, spec, prefix):
R('CMD', 'INSTALL',
'--library={0}'.format(self.module.r_lib_dir), self.stage.source_path)
R('CMD', 'INSTALL', '--library={0}'.format(self.module.r_lib_dir),
self.stage.source_path)

View file

@ -39,5 +39,5 @@ class RWithr(Package):
extends('R')
def install(self, spec, prefix):
R('CMD', 'INSTALL',
'--library={0}'.format(self.module.r_lib_dir), self.stage.source_path)
R('CMD', 'INSTALL', '--library={0}'.format(self.module.r_lib_dir),
self.stage.source_path)