We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e20bb4 commit 5708810Copy full SHA for 5708810
marimo/_convert/comment_preserver.py
@@ -3,9 +3,9 @@
3
4
import io
5
import token as token_types
6
+from dataclasses import dataclass
7
from tokenize import TokenError, tokenize
8
from typing import Callable
-from dataclasses import dataclass
9
10
11
@dataclass
@@ -73,9 +73,7 @@ def wrapper(*args: object, **kwargs: object) -> list[str]:
73
original_sources = args[0]
74
75
# Merge comments back into transformed sources
76
- return self._merge_comments(
77
- original_sources, transformed_sources
78
- )
+ return self._merge_comments(original_sources, transformed_sources)
79
80
return wrapper
81
0 commit comments