blob: 2c786e7e5e194d97c4068f9dc9113e4470094360 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# MyRule
import math
import dataclasses
from dataclasses import dataclass
from typing import Literal, Optional, Union
from pydantic import Field, BaseModel
from hrc.rule import aliases, BaseRule
from hrc.rule.BaseRule import CharacterCard
|