Skip to content

Commit 2c2249b

Browse files
committed
🔥 refactor(compiler/errors): Remove error_urls.txt from the repository and add it to .gitignore.
1 parent 8b790b9 commit 2c2249b

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

‎compiler/api/compiler.py‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,10 @@ def start(format: bool = False):
262262
layer = layer_match.group(1)
263263
continue
264264

265+
# Skip lines before the first section marker
266+
if section is None:
267+
continue
268+
265269
combinator_match = COMBINATOR_RE.match(line)
266270
if combinator_match:
267271
# noinspection PyShadowingBuiltins

0 commit comments

Comments
 (0)