Skip to content

Commit 79d25d7

Browse files
committed
formatting and linting changes
1 parent 5090d77 commit 79d25d7

File tree

13 files changed

+595
-537
lines changed

13 files changed

+595
-537
lines changed

.pre-commit-config.yaml

+13-8
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
# Install pre-commit hooks via
22
# pre-commit install
3-
4-
# yapf = yet another python formatter
5-
- repo: https://github.com/pre-commit/mirrors-yapf
6-
sha: v0.26.0
3+
4+
# black: automatic formatter
5+
- repo: https://github.com/ambv/black
6+
rev: stable
77
hooks:
8-
- id: yapf
8+
- id: black
9+
language_version: python3.6
910

10-
# pylint: THE python linter
11-
- repo: https://github.com/pre-commit/mirrors-pylint
12-
rev: v2.3.1
11+
# pylint: run from current env to find imported modules
12+
- repo: local
1313
hooks:
1414
- id: pylint
15+
name: pylint
16+
entry: python -m pylint.__main__ --disable=fixme
17+
language: system
18+
types: [python]
19+
exclude: '^(tests/)|(docs/)|setup\.py'

.pylintrc

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
[FORMAT]
22
# Maximum number of characters on a single line.
33
max-line-length=120
4+
5+
[MESSAGES CONTROL]
6+
disable=bad-continuation, # see https://github.com/PyCQA/pylint/issues/289
7+
duplicate-code # boilerplate code detected as duplicated

aiida_gaussian_datatypes/basisset/cli.py

+39-34
Original file line numberDiff line numberDiff line change
@@ -37,60 +37,64 @@
3737

3838

3939
def _names_column(name, aliases):
40-
return ', '.join(["\033[1m{}\033[0m".format(name), *[a for a in aliases if a != name]])
40+
return ", ".join(["\033[1m{}\033[0m".format(name), *[a for a in aliases if a != name]])
4141

4242

4343
def _formatted_table_import(bsets):
44-
"""generates a formatted table (using tabulate) for the given list of basis sets, showing a sequencial number"""
45-
44+
"""generates a formatted table (using tabulate) for the given list of basis sets, shows a sequencial number"""
4645

4746
def row(num, bset):
4847
return (
49-
num+1,
48+
num + 1,
5049
bset.element,
5150
_names_column(bset.name, bset.aliases),
52-
', '.join(bset.tags),
53-
bset.n_el if bset.n_el else '<unknown>',
51+
", ".join(bset.tags),
52+
bset.n_el if bset.n_el else "<unknown>",
5453
bset.version,
55-
)
54+
)
5655

5756
table_content = [row(n, b) for n, b in enumerate(bsets)]
58-
return tabulate.tabulate(table_content, headers=['Nr.', 'Sym', 'Names', 'Tags', '# Val. e⁻', 'Version'])
57+
return tabulate.tabulate(table_content, headers=["Nr.", "Sym", "Names", "Tags", "# Val. e⁻", "Version"])
5958

6059

6160
def _formatted_table_list(bsets):
62-
"""generates a formatted table (using tabulate) for the given list of basis sets, showing the ID"""
61+
"""generates a formatted table (using tabulate) for the given list of basis sets, shows the UUID"""
6362

6463
def row(bset):
6564
return (
6665
bset.uuid,
6766
bset.element,
6867
_names_column(bset.name, bset.aliases),
69-
', '.join(bset.tags),
70-
bset.n_el if bset.n_el else '<unknown>',
68+
", ".join(bset.tags),
69+
bset.n_el if bset.n_el else "<unknown>",
7170
bset.version,
72-
)
71+
)
7372

7473
table_content = [row(b) for b in bsets]
75-
return tabulate.tabulate(table_content, headers=['ID', 'Sym', 'Names', 'Tags', '# Val. e⁻', 'Version'])
74+
return tabulate.tabulate(table_content, headers=["ID", "Sym", "Names", "Tags", "# Val. e⁻", "Version"])
7675

7776

78-
@verdi_data.group('gaussian.basisset')
77+
@verdi_data.group("gaussian.basisset")
7978
def cli():
8079
"""Manage basis sets for GTO-based codes"""
81-
pass
8280

8381

82+
# fmt: off
8483
@cli.command('import')
8584
@click.argument('basisset_file', type=click.File(mode='r'))
8685
@click.option('--sym', '-s', help="filter by atomic symbol")
87-
@click.option('tags', '--tag', '-t', multiple=True,
88-
help="filter by a tag (all tags must be present if specified multiple times)")
89-
@click.option('fformat', '-f', '--format',
90-
type=click.Choice(['cp2k', ]), default='cp2k',
91-
help="the format of the basis set file")
92-
@click.option('--duplicates', type=click.Choice(['ignore', 'error', 'new']), default='ignore',
93-
help="Whether duplicates should be ignored, produce an error or uploaded as new version")
86+
@click.option(
87+
'tags', '--tag', '-t',
88+
multiple=True,
89+
help="filter by a tag (all tags must be present if specified multiple times)")
90+
@click.option(
91+
'fformat', '-f', '--format', type=click.Choice(['cp2k']), default='cp2k',
92+
help="the format of the basis set file")
93+
@click.option(
94+
'--duplicates',
95+
type=click.Choice(['ignore', 'error', 'new']), default='ignore',
96+
help="Whether duplicates should be ignored, produce an error or uploaded as new version")
97+
# fmt: on
9498
@decorators.with_dbenv()
9599
def import_basisset(basisset_file, fformat, sym, tags, duplicates):
96100
"""
@@ -101,12 +105,12 @@ def import_basisset(basisset_file, fformat, sym, tags, duplicates):
101105

102106
loaders = {
103107
"cp2k": BasisSet.from_cp2k,
104-
}
108+
}
105109

106110
filters = {
107111
'element': lambda x: not sym or x == sym,
108112
'tags': lambda x: not tags or set(tags).issubset(x),
109-
}
113+
}
110114

111115
bsets = loaders[fformat](basisset_file, filters, duplicates)
112116

@@ -124,9 +128,10 @@ def import_basisset(basisset_file, fformat, sym, tags, duplicates):
124128
echo.echo(_formatted_table_import(bsets))
125129
echo.echo("")
126130

127-
indexes = click.prompt("Which Gaussian Basis Set do you want to add?"
128-
" ('n' for none, 'a' for all, comma-seperated list or range of numbers)",
129-
value_proc=lambda v: click_parse_range(v, len(bsets)))
131+
indexes = click.prompt(
132+
"Which Gaussian Basis Set do you want to add?"
133+
" ('n' for none, 'a' for all, comma-seperated list or range of numbers)",
134+
value_proc=lambda v: click_parse_range(v, len(bsets)))
130135

131136
for idx in indexes:
132137
echo.echo_info("Adding Gaussian Basis Set for: {b.element} ({b.name})... ".format(b=bsets[idx]), nl=False)
@@ -135,12 +140,10 @@ def import_basisset(basisset_file, fformat, sym, tags, duplicates):
135140

136141

137142
@cli.command('list')
138-
@click.option('-s', '--sym', type=str, default=None,
139-
help="filter by a specific element")
140-
@click.option('-n', '--name', type=str, default=None,
141-
help="filter by name")
142-
@click.option('tags', '--tag', '-t', multiple=True,
143-
help="filter by a tag (all tags must be present if specified multiple times)")
143+
@click.option('-s', '--sym', type=str, default=None, help="filter by a specific element")
144+
@click.option('-n', '--name', type=str, default=None, help="filter by name")
145+
@click.option(
146+
'tags', '--tag', '-t', multiple=True, help="filter by a tag (all tags must be present if specified multiple times)")
144147
@decorators.with_dbenv()
145148
def list_basisset(sym, name, tags):
146149
"""
@@ -171,6 +174,7 @@ def list_basisset(sym, name, tags):
171174
echo.echo("")
172175

173176

177+
# fmt: off
174178
@cli.command('dump')
175179
@arguments.DATA(type=DataParamType(sub_classes=("aiida.data:gaussian.basisset",)))
176180
@click.option('-s', '--sym', type=str, default=None,
@@ -181,6 +185,7 @@ def list_basisset(sym, name, tags):
181185
help="filter by a tag (all tags must be present if specified multiple times)")
182186
@click.option('output_format', '-f', '--format', type=click.Choice(['cp2k', ]), default='cp2k',
183187
help="Chose the output format for the basiset: " + ', '.join(['cp2k', ]))
188+
# fmt: on
184189
@decorators.with_dbenv()
185190
def dump_basisset(sym, name, tags, output_format, data):
186191
"""
@@ -192,7 +197,7 @@ def dump_basisset(sym, name, tags, output_format, data):
192197

193198
writers = {
194199
"cp2k": BasisSet.to_cp2k,
195-
}
200+
}
196201

197202
if data:
198203
# if explicit nodes where given the only thing left is to make sure no filters are present

0 commit comments

Comments
 (0)