Skip to content

Commit

Permalink
Working structure of module V2.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubsemerak committed Nov 2, 2023
1 parent 29996ca commit a941ace
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
Empty file.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import pint
from pint import errors

from normalizer import Normalizer
from pint_registry import PintRegistryManager
from lib.normalizer import Normalizer
from lib.pint_registry import PintRegistryManager


class ConversionFactor:
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions python/src/parser/unit.py → python/src/parser/lib/unit.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import pint
from pint import errors

from category import Category
from conversion_factor import ConversionFactor
from normalizer import Normalizer
from pint_registry import PintRegistryManager
from state import State
from lib.category import Category
from lib.conversion_factor import ConversionFactor
from lib.normalizer import Normalizer
from lib.pint_registry import PintRegistryManager
from lib.state import State


class Unit:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from category import Category
from state import State
from lib.category import Category
from lib.state import State


class UnitsAnalyzer:
Expand Down
6 changes: 3 additions & 3 deletions python/src/parser/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

import pandas as pd

from constants import PANDAS_STR_NA_VALUES_CUSTOMIZED
from unit import Unit
from units_analyzer import UnitsAnalyzer
from lib.constants import PANDAS_STR_NA_VALUES_CUSTOMIZED
from lib.unit import Unit
from lib.units_analyzer import UnitsAnalyzer


def read_rec20(path):
Expand Down

0 comments on commit a941ace

Please sign in to comment.