Skip to content

Commit

Permalink
sort imports for python scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
daylinmorgan committed Mar 20, 2024
1 parent 53faa4b commit d189b7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/csv2longtable
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env python3
import argparse
import csv
from pathlib import Path
import sys
from pathlib import Path


def get_args():
Expand Down
3 changes: 1 addition & 2 deletions scripts/csv2mdtable
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
#!/usr/bin/env python3
import argparse
import csv
from pathlib import Path
import sys

from pathlib import Path

ALIGNMENTS = {"c": ":---:", "r": "---:", "l": ":---"}

Expand Down

0 comments on commit d189b7d

Please sign in to comment.