Skip to content

Commit 95c6e74

Browse files
x-N0WhyNotHugo
authored andcommitted
Remove not needed str for string in code example
1 parent 03bd237 commit 95c6e74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/getting-started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Generating SVG files
4343
4444
# Write to a file-like object:
4545
rv = BytesIO()
46-
EAN13(str("100000902922"), writer=SVGWriter()).write(rv)
46+
EAN13("100000902922", writer=SVGWriter()).write(rv)
4747
4848
# Or to an actual file:
4949
with open("somefile.svg", "wb") as f:

0 commit comments

Comments
 (0)