Browse Source

Importe angepasst

gc-server3 2 months ago
parent
commit
f5762af559
6 changed files with 8 additions and 8 deletions
  1. 0 0
      gchr/__init__.py
  2. 3 3
      gchr/gchr.py
  3. 1 1
      gchr/gchr_convert.py
  4. 0 0
      gchr/tests/__init__.py
  5. 3 3
      gchr/tests/test_gchr.py
  6. 1 1
      gchr2.py

+ 0 - 0
gcstruct/tests/__init__.py → gchr/__init__.py


+ 3 - 3
gchr/gchr.py

@@ -7,14 +7,14 @@ from typing import Callable
 
 import pandas as pd
 
-from gcstruct.gchr_bookings import GchrBookings
-from gcstruct.gchr_export import (
+from gchr.gchr_bookings import GchrBookings
+from gchr.gchr_export import (
     ACCOUNT_INFO,
     GchrExportConfig,
     GchrExportFormat,
     get_export_fn,
 )
-from gcstruct.gchr_translate import load_translation
+from gchr.gchr_translate import load_translation
 
 
 @dataclass

+ 1 - 1
gchr/gchr_convert.py

@@ -1,7 +1,7 @@
 import csv
 import xml.etree.ElementTree as ET
 
-from gcstruct.gchr import GCHR
+from gchr.gchr import GCHR
 
 
 def convert_to_row(node: list[ET.Element]) -> list[str]:

+ 0 - 0
gchr/tests/__init__.py


+ 3 - 3
gcstruct/tests/test_gchr.py → gchr/tests/test_gchr.py

@@ -2,9 +2,9 @@ import unittest
 
 import pandas as pd
 
-from gcstruct.gchr import GCHR
-from gcstruct.gchr_bookings import GchrBookings
-from gcstruct.gchr_translate import TRANSLATE
+from gchr.gchr import GCHR
+from gchr.gchr_bookings import GchrBookings
+from gchr.gchr_translate import TRANSLATE
 
 
 class TestGchr(unittest.TestCase):

+ 1 - 1
gchr2.py

@@ -1,6 +1,6 @@
 import os
 
-from gcstruct.gchr import GCHR
+from gchr.gchr import GCHR
 
 if __name__ == "__main__":
     gchr = GCHR(os.getcwd())