Skip to content

Commit

Permalink
Fix a parentheses-related syntax error in the usage snippet in the RE…
Browse files Browse the repository at this point in the history
…ADME
  • Loading branch information
amn committed Sep 29, 2024
1 parent b930beb commit 62b56e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ The code snippet below demonstrates obtaining of a _parse tree_ (in the `stylesh

```python
from csspring.parsing import normalize_input, parse_stylesheet
stylesheet = parse_stylesheet(normalize_input(open('example.css', newline=''))))) # The `newline=''` argument prevents default re-writing of newline sequences in input — per the CSS Syntax spec., parsing does filtering of newline sequences so no rewriting by `open` is necessary or desirable
stylesheet = parse_stylesheet(normalize_input(open('example.css', newline=''))) # The `newline=''` argument prevents default re-writing of newline sequences in input — per the CSS Syntax spec., parsing does filtering of newline sequences so no rewriting by `open` is necessary or desirable
```

## Documentation
Expand Down

0 comments on commit 62b56e3

Please sign in to comment.