We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent deffa14 commit 43b65b3Copy full SHA for 43b65b3
1 file changed
src/headhunter/models.py
@@ -63,7 +63,11 @@ def __post_init__(self) -> None:
63
msg = f"Invalid case: {self.case}"
64
logger.error(msg)
65
raise ValueError(msg)
66
- if self.is_inline and self.marker not in ("*", "column"):
+ if (
67
+ self.is_inline
68
+ and not self.is_extracted
69
+ and self.marker not in ("*", "column")
70
+ ):
71
msg = "Only asterisk or column headings can be inline"
72
73
0 commit comments