提交 bcfa58df authored 作者: Arnaud Bergeron's avatar Arnaud Bergeron

Flake8 fix.

上级 24ab1fa4
......@@ -363,7 +363,7 @@ class DnnVersion(GpuOp):
return [config.dnn.library_path]
def c_compile_args(self):
return ['-Wl,-rpath,'+config.dnn.library_path]
return ['-Wl,-rpath,' + config.dnn.library_path]
def c_support_code(self):
return """
......
......@@ -98,7 +98,7 @@ class DnnBase(GpuOp, COp):
return [config.dnn.library_path]
def c_compile_args(self):
return ['-Wl,-rpath,'+config.dnn.library_path]
return ['-Wl,-rpath,' + config.dnn.library_path]
class GpuDnnConvDesc(GpuOp):
......
......@@ -174,7 +174,7 @@ class DnnBase(COp):
return [config.dnn.library_path]
def c_compile_args(self):
return ['-Wl,-rpath,'+config.dnn.library_path]
return ['-Wl,-rpath,' + config.dnn.library_path]
def c_code_cache_version(self):
return (super(DnnBase, self).c_code_cache_version(), version())
......@@ -196,7 +196,7 @@ class DnnVersion(Op):
return [config.dnn.library_path]
def c_compile_args(self):
return ['-Wl,-rpath,'+config.dnn.library_path]
return ['-Wl,-rpath,' + config.dnn.library_path]
def c_support_code(self):
return """
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论