Skip to content

Commit

Permalink
python formatting
Browse files Browse the repository at this point in the history
Signed-off-by: David Galiffi <[email protected]>
  • Loading branch information
dgaliffiAMD committed Sep 26, 2024
1 parent e37c956 commit 2087f08
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion source/python/gui/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ def parse_requirements(fname="requirements.txt"):
install_requires=parse_requirements(),
python_requires=">=3.6",
entry_points={
"console_scripts": ["rocprof-sys-causal-plot=rocprof_sys_causal_viewer.__main__:main"]
"console_scripts": [
"rocprof-sys-causal-plot=rocprof_sys_causal_viewer.__main__:main"
]
},
)
4 changes: 3 additions & 1 deletion source/python/gui/source/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,9 @@ def main():
my_parser.add_argument(
"--version",
action="version",
version="ROCm Systems Profiler Causal Viewer v{}\n".format(f"{__version__}".strip("\n")),
version="ROCm Systems Profiler Causal Viewer v{}\n".format(
f"{__version__}".strip("\n")
),
)

my_parser.add_argument(
Expand Down

0 comments on commit 2087f08

Please sign in to comment.