Skip to content

Commit 9fefedb

Browse files
committed
Update black formatting.
1 parent f183d26 commit 9fefedb

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

python/lsst/sconsUtils/tools/cuda.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ def generate(env):
5252
env["NVCCCMDLINE"] = ""
5353

5454
# default NVCC commands
55-
env[
56-
"STATICNVCCCMD"
57-
] = "$NVCC -o $TARGET -c $NVCCFLAGS $_CPPINCFLAGS $STATICNVCCFLAGS $NVCCCMDLINE $SOURCES"
55+
env["STATICNVCCCMD"] = (
56+
"$NVCC -o $TARGET -c $NVCCFLAGS $_CPPINCFLAGS $STATICNVCCFLAGS $NVCCCMDLINE $SOURCES"
57+
)
5858
env["SHAREDNVCCCMD"] = (
5959
"$NVCC -o $TARGET -c $NVCCFLAGS $_CPPINCFLAGS $SHAREDNVCCFLAGS"
6060
" $ENABLESHAREDNVCCFLAG $NVCCCMDLINE $SOURCES"

python/lsst/sconsUtils/vcs/git.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
If ever we want to do anything clever, we should use one of
66
the supported python packages
77
"""
8+
89
import os
910

1011
from .. import state, utils

python/lsst/sconsUtils/vcs/hg.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
If ever we want to do anything clever, we should use one of
66
the supported svn/python packages
77
"""
8+
89
import os
910
import re
1011

python/lsst/sconsUtils/vcs/svn.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
If ever we want to do anything clever, we should use one of
44
the supported svn/python packages
55
"""
6+
67
import os
78
import re
89
import sys

0 commit comments

Comments
 (0)