python-genshin-artifact/python_genshin_artifact/models/damage/result.py
deepsource-autofix[bot] a4d5e2af06
🎨 Format code with black
2023-05-14 12:46:48 +08:00

11 lines
170 B
Python

from pydantic import BaseModel
class DamageResult(BaseModel):
critical: float
non_critical: float
expectation: float
is_heal: bool
is_shield: bool