Skip to content
This repository was archived by the owner on Feb 12, 2025. It is now read-only.

Commit 9f5b9f9

Browse files
committed
use unicode literal instead of byte literal
1 parent 57bec19 commit 9f5b9f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mapboxcli/scripts/datasets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ def write_features(features, append, sequence, use_rs, service, uri):
240240
if sequence:
241241
for feature in features:
242242
if use_rs:
243-
click.echo(b'\x1e', nl=False)
243+
click.echo(u'\x1e', nl=False)
244244
click.echo(json.dumps(feature), file=dst)
245245
else:
246246
click.echo(json.dumps(

0 commit comments

Comments
 (0)