Skip to content

Commit 608cca8

Browse files
fixing typ
1 parent c499c48 commit 608cca8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ classifiers = [
2222
keywords=['helldivers2','api']
2323
requires-python = ">=3.8.1"
2424

25-
version = '0.0.1.19.5'
25+
version = '0.0.1.19.6'
2626
dependencies= [
2727
"pydantic>=2.9.2",
2828
"httpx>=0.27.2"

src/hd2api/models/Planet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ def simple_planet_view(
386386
if avg.event:
387387
outlist.append(f"{self.event.estimate_remaining_lib_time(avg.event)}")
388388
if self.regions:
389-
addme = "**REGIONS**" + "\n".join(
389+
addme = "**REGIONS**\n" + "\n".join(
390390
"* " + region.inline_view() for region in self.regions
391391
)
392392
outlist.append(addme)

0 commit comments

Comments
 (0)