We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ac3147 commit 7b2c0afCopy full SHA for 7b2c0af
src/pytask_stata/collect.py
@@ -63,7 +63,6 @@ def pytask_collect_task(
63
64
mark = _parse_stata_mark(mark=marks[0])
65
script, options = stata(**marks[0].kwargs)
66
-
67
obj.pytask_meta.markers.append(mark)
68
69
# Collect the nodes in @pytask.mark.julia and validate them.
@@ -190,7 +189,5 @@ def pytask_collect_task(
190
189
def _parse_stata_mark(mark: Mark) -> Mark:
191
"""Parse a Stata mark."""
192
script, options = stata(**mark.kwargs)
193
194
parsed_kwargs = {"script": script or None, "options": options or []}
195
196
return Mark("stata", (), parsed_kwargs)
0 commit comments