Coverage for src \ syriantaxes \ __init__.py: 100%
5 statements
« prev ^ index » next coverage.py v7.13.0, created at 2025-12-12 14:00 +0200
« prev ^ index » next coverage.py v7.13.0, created at 2025-12-12 14:00 +0200
1from .bracket import Bracket
2from .rounder import Rounder
3from .ss import SocialSecurity
4from .taxes import (
5 calculate_brackets_tax,
6 calculate_fixed_tax,
7 calculate_gross_compensation,
8 calculate_gross_components,
9 calculate_gross_fixed_salary,
10)
12__all__ = [
13 "Bracket",
14 "Rounder",
15 "SocialSecurity",
16 "calculate_brackets_tax",
17 "calculate_fixed_tax",
18 "calculate_gross_compensation",
19 "calculate_gross_components",
20 "calculate_gross_fixed_salary",
21]