Skip to content

Commit 2285f08

Browse files
committed
Cleanup and reorganise
1 parent f457cf5 commit 2285f08

File tree

3 files changed

+5
-14
lines changed

3 files changed

+5
-14
lines changed

changes/changelog.py

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,16 @@
11
import logging
2+
import io
23
import re
34

4-
import click
55
from plumbum.cmd import git
66

7-
from changes import version
8-
from changes.attributes import extract_attribute
9-
107
log = logging.getLogger(__name__)
118

129

1310
def write_new_changelog(repo_url, filename, content_lines, dry_run=True):
1411
heading_and_newline = '# [Changelog](%s/releases)\n' % repo_url
1512

16-
with click.open_file(filename, 'r+') as f:
13+
with io.open(filename, 'r+') as f:
1714
existing = f.readlines()
1815

1916
output = existing[2:]
@@ -27,7 +24,7 @@ def write_new_changelog(repo_url, filename, content_lines, dry_run=True):
2724
output = ''.join(output)
2825

2926
if not dry_run:
30-
with click.open_file(filename, 'w+') as f:
27+
with io.open(filename, 'w+') as f:
3128
f.write(output)
3229
else:
3330
log.info('New changelog:\n%s', ''.join(content_lines))

changes/packaging.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
import logging
22

3-
import click
43
from path import path
5-
from plumbum.cmd import python
64

7-
from changes import probe, shell, util, venv, verification
5+
from changes import shell, util, venv, verification
86

97
log = logging.getLogger(__name__)
108

changes/vcs.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
1-
import json
21
import io
32
import logging
4-
from pprint import pprint
53

64
import click
75

86
import magic
9-
from path import path
10-
from plumbum.cmd import git
117
import requests
128
from uritemplate import expand
139

14-
from changes import config, shell, packaging
10+
from changes import shell
1511

1612
log = logging.getLogger(__name__)
1713

0 commit comments

Comments
 (0)