Skip to content

Commit 7446d97

Browse files
committed
formatting (just to trigger CI with new pymatgen version)
1 parent dedcadd commit 7446d97

File tree

4 files changed

+10
-13
lines changed

4 files changed

+10
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ atomate is a software for computational materials science that contains pre-buil
88

99
If you find atomate useful, please encourage its development by citing the following paper in your research output:
1010

11-
```
11+
```txt
1212
Mathew, K., Montoya, J. H., Faghaninia, A., Dwarakanath, S., Aykol,
1313
M., Tang, H., Chu, I., Smidt, T., Bocklund, B., Horton, M., Dagdelen,
1414
J., Wood, B., Liu, Z.-K., Neaton, J., Ong, S. P., Persson, K., Jain,

atomate/common/powerups.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
This module defines general powerups that can be used for all workflows
33
"""
4+
45
from importlib import import_module
56
from typing import List
67

atomate/vasp/firetasks/run_calc.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
from monty.os.path import zpath
2-
from monty.serialization import loadfn
3-
4-
from atomate.vasp.config import HALF_KPOINTS_FIRST_RELAX
5-
61
"""
72
This module defines tasks that support running vasp in various ways.
83
"""
@@ -33,12 +28,14 @@
3328
from custodian.vasp.jobs import VaspJob, VaspNEBJob
3429
from custodian.vasp.validators import VaspFilesValidator, VasprunXMLValidator
3530
from fireworks import FiretaskBase, FWAction, explicit_serialize
31+
from monty.os.path import zpath
32+
from monty.serialization import loadfn
3633
from pymatgen.electronic_structure.boltztrap import BoltztrapRunner
3734
from pymatgen.io.vasp import Incar, Kpoints, Poscar, Potcar
3835
from pymatgen.io.vasp.sets import get_vasprun_outcar
3936

4037
from atomate.utils.utils import env_chk, get_logger
41-
from atomate.vasp.config import CUSTODIAN_MAX_ERRORS
38+
from atomate.vasp.config import CUSTODIAN_MAX_ERRORS, HALF_KPOINTS_FIRST_RELAX
4239

4340
__author__ = "Anubhav Jain <[email protected]>"
4441
__credits__ = "Shyue Ping Ong <ong.sp>"

tasks.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
# Copyright (c) Pymatgen Development Team.
2-
# Distributed under the terms of the MIT License.
1+
"""
2+
Deployment file to facilitate releases.
3+
Copyright (c) Pymatgen Development Team.
4+
Distributed under the terms of the MIT License.
5+
"""
36

47
import json
58
import os
@@ -11,10 +14,6 @@
1114

1215
from atomate import __version__
1316

14-
"""
15-
Deployment file to facilitate releases.
16-
"""
17-
1817
__author__ = "Shyue Ping Ong, Anubhav Jain"
1918
__email__ = "[email protected]"
2019
__date__ = "Sep 1, 2014"

0 commit comments

Comments
 (0)