Skip to content

Commit 62b56e3

Browse files
committed
Fix a parentheses-related syntax error in the usage snippet in the README
1 parent b930beb commit 62b56e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The code snippet below demonstrates obtaining of a _parse tree_ (in the `stylesh
3030

3131
```python
3232
from csspring.parsing import normalize_input, parse_stylesheet
33-
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
33+
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
3434
```
3535

3636
## Documentation

0 commit comments

Comments
 (0)