Skip to content

Commit f865aad

Browse files
committed
Alphabetized imports
1 parent 525a8eb commit f865aad

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

  • remove-json-keys
  • translate-messages

remove-json-keys/src/remove_json_keys/lib/url.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
import sys, webbrowser
12
from urllib.error import URLError
23
from urllib.parse import urlparse
34
from urllib.request import urlopen
4-
import sys, webbrowser
55

66
def get(url, timeout=5, encoding='utf-8'):
77
url = validate_url(url)

remove-json-keys/utils/lib/git.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from pathlib import Path
21
import os, subprocess, sys
2+
from pathlib import Path
33

44
def commit(files, msg, *args) : run('add', *files) ; run('commit', '-m', msg, *args)
55

translate-messages/src/translate_messages/lib/url.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
import sys, webbrowser
12
from urllib.error import URLError
23
from urllib.parse import urlparse
34
from urllib.request import urlopen
4-
import sys, webbrowser
55

66
def get(url, timeout=5, encoding='utf-8'):
77
url = validate_url(url)

translate-messages/utils/lib/git.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from pathlib import Path
21
import os, subprocess, sys
2+
from pathlib import Path
33

44
def commit(files, msg, *args) : run('add', *files) ; run('commit', '-m', msg, *args)
55

0 commit comments

Comments
 (0)