mirror of https://github.com/databricks/cli.git
ruff format
This commit is contained in:
parent
f2f7ddf1a2
commit
6e892c3463
|
@ -2,7 +2,9 @@
|
||||||
"""
|
"""
|
||||||
Helper to sort lines in text file. Similar to 'sort' but no dependence on locale or presence of 'sort' in PATH.
|
Helper to sort lines in text file. Similar to 'sort' but no dependence on locale or presence of 'sort' in PATH.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
lines = sys.stdin.readlines()
|
lines = sys.stdin.readlines()
|
||||||
lines.sort()
|
lines.sort()
|
||||||
sys.stdout.write("".join(lines))
|
sys.stdout.write("".join(lines))
|
||||||
|
|
Loading…
Reference in New Issue