Skip to content

Commit

Permalink
formatが間違ってたので直してあげたよ!
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 24, 2024
1 parent 43c9acb commit cc55563
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions tests/plugins/test_hatomikuji.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"""

import unittest

from plugins.hato_mikuji import HatoMikuji


Expand All @@ -12,9 +13,7 @@ class TestHatoMikuji(unittest.TestCase):
"""

def test_config_normalized_per_mill(self):
sum_of_appearance = sum(map(lambda e: e.appearance, HatoMikuji.OMIKUJI_CONFIG.values()))
self.assertEqual(
sum_of_appearance,
1000
sum_of_appearance = sum(
map(lambda e: e.appearance, HatoMikuji.OMIKUJI_CONFIG.values())
)

self.assertEqual(sum_of_appearance, 1000)

0 comments on commit cc55563

Please sign in to comment.