Skip to content

Commit 31f98fc

Browse files
authored
Merge pull request #6 from jesseward/jesseward/v1.2.0
`v1.2.0` make things current
2 parents 82eea3e + 4ff0d01 commit 31f98fc

File tree

11 files changed

+351
-288
lines changed

11 files changed

+351
-288
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,4 @@ target/
6262
.ipynb_checkpoints
6363

6464
*.swp
65+
.venv/

discogs_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# -*- coding: utf-8 -*-
2-
__version__ = '1.1.0'
2+
__version__ = "1.2.0"

discogs_cli/completions.py

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
11
# -*- coding: utf-8 -*-
22

33
SUBCOMMANDS = {
4-
'artist': 'Artist info and their releases',
5-
'label': 'Label and its associated releases',
6-
'master': 'Master release and child releases',
7-
'release': 'Release/Album data',
8-
'search': 'Search Discogs'
4+
"artist": "Artist info and their releases",
5+
"label": "Label and its associated releases",
6+
"master": "Master release and child releases",
7+
"release": "Release/Album data",
8+
"search": "Search Discogs",
99
}
1010
ARGS_OPTS_LOOKUP = {
11-
'artist': {
12-
'args': '1',
13-
'opts': '',
11+
"artist": {
12+
"args": "1",
13+
"opts": "",
1414
},
15-
'label': {
16-
'args': '1',
17-
'opts': '',
15+
"label": {
16+
"args": "1",
17+
"opts": "",
1818
},
19-
'master': {
20-
'args': '1',
21-
'opts': '',
19+
"master": {
20+
"args": "1",
21+
"opts": "",
2222
},
23-
'release': {
24-
'args': '1',
25-
'opts': '',
23+
"release": {
24+
"args": "1",
25+
"opts": "",
2626
},
27-
'search': {
28-
'args': '"query string"',
29-
'opts': [
30-
'--lookup (artist|label|release)',
27+
"search": {
28+
"args": '"query string"',
29+
"opts": [
30+
"--lookup (artist|label|release)",
3131
],
3232
},
3333
}
3434
META_LOOKUP = {
35-
'1': 'id: int - discogs ID to retrieve',
36-
'--lookup': '(artist|label|release)',
37-
'"(artist|label|release)"': 'Type of query to perform',
35+
"1": "id: int - discogs ID to retrieve",
36+
"--lookup": "(artist|label|release)",
37+
'"(artist|label|release)"': "Type of query to perform",
3838
}
3939
META_LOOKUP.update(SUBCOMMANDS)

0 commit comments

Comments
 (0)