Skip to content

Commit b8c65b6

Browse files
committed
Remove unneeded join
1 parent 6b2cfbc commit b8c65b6

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

twitchio/__main__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -257,14 +257,12 @@ def get_version() -> str:
257257

258258

259259
def version_info() -> None:
260-
python_info = "\n".join(sys.version.split("\n"))
261-
262260
info: str = f"""
263261
twitchio : {get_version()}
264262
aiohttp : {aiohttp.__version__}
265263
266264
Python:
267-
- {python_info}
265+
- {sys.version}
268266
System:
269267
- {platform.platform()}
270268
Extras:

0 commit comments

Comments
 (0)