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.
|
||||
"""
|
||||
|
||||
import sys
|
||||
|
||||
lines = sys.stdin.readlines()
|
||||
lines.sort()
|
||||
sys.stdout.write("".join(lines))
|
||||
|
|
Loading…
Reference in New Issue