Skip to content

Commit 6b7ce80

Browse files
authored
Merge pull request #449 from Kosmorro/dependabot/pip/master/black-26.1.0
2 parents 3a74444 + 495850f commit 6b7ce80

6 files changed

Lines changed: 45 additions & 48 deletions

File tree

kosmorro/locales/messages.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: PROJECT VERSION\n"
1010
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
11-
"POT-Creation-Date: 2026-01-01 10:39+0100\n"
11+
"POT-Creation-Date: 2026-01-22 17:08+0100\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"

poetry.lock

Lines changed: 40 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pytz = "^2025.2"
2525
argcomplete = "^3.6.2"
2626

2727
[tool.poetry.group.dev.dependencies]
28-
black = ">=24.8,<26.0"
28+
black = ">=24.8,<27.0"
2929
pytest = ">=8.3,<10.0"
3030
aurornis = "^1.6"
3131

tests/dates.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@ def test_with_date():
99
result = execute(KOSMORRO + arg)
1010
assert result.successful
1111

12-
assert (
13-
result.stdout
14-
== """Monday, January 27, 2020
12+
assert result.stdout == """Monday, January 27, 2020
1513
1614
New Moon
1715
First Quarter on Sunday, February 2, 2020 at 1:41 AM
@@ -21,7 +19,6 @@ def test_with_date():
2119
2220
Note: All the hours are given in UTC.
2321
"""
24-
)
2522

2623

2724
def test_with_incorrect_date_values():

tests/output.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@ def test_json_output():
1515
KOSMORRO + ["--position=50.5876,3.0624", "-d2020-01-27", "--format=json"]
1616
)
1717
assert result.successful
18-
assert (
19-
result.stdout
20-
== """{
18+
assert result.stdout == """{
2119
"ephemerides": [
2220
{
2321
"object": {
@@ -150,7 +148,6 @@ def test_json_output():
150148
]
151149
}
152150
"""
153-
)
154151

155152

156153
def test_latex_output():

tests/position.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88

99
def check_command_return(result):
1010
assert result.successful
11-
assert (
12-
result.stdout
13-
== """Monday, January 27, 2020
11+
assert result.stdout == """Monday, January 27, 2020
1412
1513
Object Rise time Culmination time Set time
1614
-------- ----------- ------------------ ----------
@@ -33,7 +31,6 @@ def check_command_return(result):
3331
3432
Note: All the hours are given in UTC.
3533
"""
36-
)
3734

3835

3936
def test_with_position():

0 commit comments

Comments
 (0)