We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c499c48 commit 608cca8Copy full SHA for 608cca8
pyproject.toml
@@ -22,7 +22,7 @@ classifiers = [
22
keywords=['helldivers2','api']
23
requires-python = ">=3.8.1"
24
25
-version = '0.0.1.19.5'
+version = '0.0.1.19.6'
26
dependencies= [
27
"pydantic>=2.9.2",
28
"httpx>=0.27.2"
src/hd2api/models/Planet.py
@@ -386,7 +386,7 @@ def simple_planet_view(
386
if avg.event:
387
outlist.append(f"{self.event.estimate_remaining_lib_time(avg.event)}")
388
if self.regions:
389
- addme = "**REGIONS**" + "\n".join(
+ addme = "**REGIONS**\n" + "\n".join(
390
"* " + region.inline_view() for region in self.regions
391
)
392
outlist.append(addme)
0 commit comments