A library that computes the ephemerides.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

16 righe
321 B

  1. import unittest
  2. import kosmorrolib.core as core
  3. class CoreTestCase(unittest.TestCase):
  4. def test_flatten_list(self):
  5. self.assertEqual(
  6. [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
  7. core.flatten_list([0, 1, 2, [3, 4, [5, 6], 7], 8, [9]]),
  8. )
  9. if __name__ == "__main__":
  10. unittest.main()