Skip to content

Commit eabb50c

Browse files
committed
fixed more whitespace issues
Signed-off-by: Larry Gezelius <[email protected]>
1 parent 9df6df3 commit eabb50c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ros2pkg/ros2pkg/verb/create.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -113,13 +113,13 @@ def get_git_config(key: str) -> str | None:
113113
sys.exit(0)
114114

115115
maintainer_name: str = (
116-
args.maintainer_name
117-
or get_git_config('user.name')
116+
args.maintainer_name
117+
or get_git_config('user.name')
118118
or getpass.getuser())
119119
maintainer = Person(maintainer_name)
120120
maintainer.email = (
121-
args.maintainer_email
122-
or get_git_config('user.email')
121+
args.maintainer_email
122+
or get_git_config('user.email')
123123
or f"{maintainer.name.replace(' ', '')}@todo.todo")
124124

125125
node_name = None

0 commit comments

Comments
 (0)