- 518370910136
- https://boyanzh.site
-
FOCS maintainer for almost everything.
- Joined on
2021-05-21
Block a user
dev
every field in this file should not be optional. we give an default value here if any field does not exist
dev
I mean
if parser not in keyword_parser:
continue
if getattr(task_stage, parser, None) is None:
continue
if score != score_:
continue
dev
I mean
if parser not in keyword_parser:
continue
if getattr(task_stage, parser, None) is None:
continue
if score != score_:
continue
dev
class DummyConfig(BaseModel):
score: int
comment: str
Then dummy_parser_.with_.update(dummy_config(...).model_dump())
.
dev
Is
pre-commit
on your local dev env installed correctly?for
pycln
it has some path issue so I skip it and runpycln .
locally to do the test (sometimes I may forgot...)
You…