Skip to content

Commit d09dc47

Browse files
committed
Devops: Update the pre-commit hooks
* Add `check-merge-conflict` * Add `check-yaml` * Add `--fix=lf` to `mixed-line-ending` This is more explicit and prevents ambiguity * Add `--remove` to `fix-encoding-pragma` This pragma was really only necessary during the Python 2 to 3 transition.
1 parent f7118b1 commit d09dc47

File tree

104 files changed

+4
-129
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+4
-129
lines changed

.github/workflows/validate_release_tag.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Validate that the version in the tag label matches the version of the package."""
32
import argparse
43
import ast

.pre-commit-config.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,14 @@ repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
33
rev: v4.5.0
44
hooks:
5+
- id: check-merge-conflict
6+
- id: check-yaml
57
- id: double-quote-string-fixer
68
- id: end-of-file-fixer
79
- id: fix-encoding-pragma
10+
args: [--remove]
811
- id: mixed-line-ending
12+
args: [--fix=lf]
913
- id: trailing-whitespace
1014

1115
- repo: https://github.com/ikamensh/flynt/

docs/source/conf.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
# Configuration file for the Sphinx documentation builder.
42
#
53
# This file only contains a selection of the most common options. For a full
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
# -*- coding: utf-8 -*-
21
"""Package that defines common interfaces for workflows that are implemented in AiiDA for various quantum engines."""
32
__version__ = '1.0.1'

src/aiida_common_workflows/cli/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
"""Module for the command line interface."""
42
import click_completion
53

src/aiida_common_workflows/cli/launch.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Commands to launch common workflows."""
32
import functools
43

src/aiida_common_workflows/cli/options.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Module with pre-defined options and defaults for CLI command parameters."""
32
import json
43
import pathlib

src/aiida_common_workflows/cli/plot.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Commands to plot results from a workflow."""
32
import click
43
from aiida.cmdline.params import arguments

src/aiida_common_workflows/cli/root.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Command line interface ``acwf``."""
32
import click
43
from aiida.cmdline.groups import VerdiCommandGroup

src/aiida_common_workflows/cli/utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Module with utitlies for the CLI."""
32
import sys
43

src/aiida_common_workflows/common/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Module for resources common to the entire `aiida-common-workflows` package."""
32
from .types import ElectronicType, RelaxType, SpinType
43

src/aiida_common_workflows/common/types.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Module with basic type definitions."""
32
from enum import Enum
43

src/aiida_common_workflows/common/visualization/dissociation.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Utilities to visualize a dissociation curve based on set of distances and energies."""
32
import typing
43

src/aiida_common_workflows/common/visualization/eos.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Utilities to fit and visualize a Equation of States based on set of volumes and energies."""
32
import typing
43

src/aiida_common_workflows/generators/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Module with resources for input generators for workflows."""
32
from .generator import InputGenerator
43
from .ports import ChoiceType, CodeType, InputGeneratorPort

src/aiida_common_workflows/generators/generator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Base class for an input generator for a common workflow."""
32
import abc
43
import copy

src/aiida_common_workflows/generators/ports.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Modules with resources to define specific port types for input generator specifications."""
32
from __future__ import annotations
43

src/aiida_common_workflows/generators/spec.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Class to define the specification of an input generator."""
32
from __future__ import annotations
43

src/aiida_common_workflows/plugins/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Module with utilities for working with the plugins provided by this plugin package."""
32
from .entry_point import get_entry_point_name_from_class, get_workflow_entry_point_names, load_workflow_entry_point
43

src/aiida_common_workflows/plugins/entry_point.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Module with utilities for working with the plugins provided by this plugin package."""
32
import typing
43

src/aiida_common_workflows/protocol/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
"""Module with utilities to define and implement workchain protocols."""
42
from .registry import ProtocolRegistry
53

src/aiida_common_workflows/protocol/registry.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
"""Module with base protocol registry."""
42
import copy
53
import typing

src/aiida_common_workflows/utils/sphinx_extension/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Module with Spinx extension to facilitate the automatic documentation of common workflows."""
32

43

src/aiida_common_workflows/utils/sphinx_extension/input_generator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Define a Restructured Text directive to auto-document :class:`aiida_common_workflows.generators.InputGenerator`."""
32
import inspect
43
import typing as t

src/aiida_common_workflows/workflows/bands/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
"""Module with the base classes for the common bands workchains."""
42
from .generator import *
53

src/aiida_common_workflows/workflows/bands/generator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Module with base input generator for the common bands workchains."""
32
import abc
43

src/aiida_common_workflows/workflows/bands/siesta/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
"""Module with the implementations of the common bands workchain for Siesta."""
42
from .generator import *
53
from .workchain import *

src/aiida_common_workflows/workflows/bands/siesta/generator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Implementation of `aiida_common_workflows.common.bands.generator.CommonBandsInputGenerator` for SIESTA."""
32
from aiida import engine, orm
43

src/aiida_common_workflows/workflows/bands/siesta/workchain.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Implementation of `aiida_common_workflows.common.relax.workchain.CommonRelaxWorkChain` for SIESTA."""
32
from aiida.engine import calcfunction
43
from aiida.orm import Float

src/aiida_common_workflows/workflows/bands/workchain.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Module with base wrapper workchain for bands workchains."""
32
from abc import ABCMeta, abstractmethod
43

src/aiida_common_workflows/workflows/dissociation.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""
32
Workflow calculating the dissociation curve of diatomic molecules.
43
It can use any code plugin implementing the common relax workflow.

src/aiida_common_workflows/workflows/eos.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Equation of state workflow that can use any code plugin implementing the common relax workflow."""
32
import inspect
43

src/aiida_common_workflows/workflows/relax/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
"""Module with the base classes for the common structure relaxation workchains."""
42
from .generator import *
53

src/aiida_common_workflows/workflows/relax/abinit/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
"""Module with the implementations of the common structure relaxation workchain for Abinit."""
42
from .generator import *
53
from .workchain import *

src/aiida_common_workflows/workflows/relax/abinit/extractors.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""
32
Collects some functions to postprocess a `CommonWorkflowAbinitWorkChain`.
43
"""

src/aiida_common_workflows/workflows/relax/abinit/generator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Implementation of `aiida_common_workflows.common.relax.generator.CommonRelaxInputGenerator` for ABINIT."""
32
import collections
43
import copy

src/aiida_common_workflows/workflows/relax/abinit/workchain.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Implementation of `aiida_common_workflows.common.relax.workchain.CommonRelaxWorkChain` for Abinit."""
32
import numpy as np
43
from aiida import orm

src/aiida_common_workflows/workflows/relax/bigdft/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
"""Module with the implementations of the common structure relaxation workchain for BigDFT."""
42
from .generator import *
53
from .workchain import *

src/aiida_common_workflows/workflows/relax/bigdft/generator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Implementation of `aiida_common_workflows.common.relax.generator.CommonRelaxInputGenerator` for BigDFT."""
32
import typing as t
43

src/aiida_common_workflows/workflows/relax/bigdft/workchain.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Implementation of `aiida_common_workflows.common.relax.workchain.CommonRelaxWorkChain` for BigDFT"""
32
from aiida.plugins import WorkflowFactory
43

src/aiida_common_workflows/workflows/relax/castep/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
"""Module with the implementations of the common structure relaxation workchain for CASTEP"""
42
from .generator import *
53
from .workchain import *

src/aiida_common_workflows/workflows/relax/castep/extractors.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""
32
Collects some functions to postprocess a `CastepCommonRelaxWorkChain`.
43
"""

src/aiida_common_workflows/workflows/relax/castep/generator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Implementation of `aiida_common_workflows.common.relax.generator.CommonRelaxInputGenerator` for CASTEP"""
32
import collections
43
import copy

src/aiida_common_workflows/workflows/relax/castep/workchain.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Implementation of `aiida_common_workflows.common.relax.workchain.CommonRelaxWorkChain` for CASTEP"""
32
from aiida import orm
43
from aiida.engine import calcfunction

src/aiida_common_workflows/workflows/relax/cp2k/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
"""Module with the implementations of the common structure relaxation workchain for CP2K."""
42
from .generator import *
53
from .workchain import *

src/aiida_common_workflows/workflows/relax/cp2k/generator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Implementation of `aiida_common_workflows.common.relax.generator.CommonRelaxInputGenerator` for CP2K."""
32
import collections
43
import pathlib

src/aiida_common_workflows/workflows/relax/cp2k/workchain.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Implementation of `aiida_common_workflows.common.relax.workchain.CommonRelaxWorkChain` for CP2K."""
32
import re
43

src/aiida_common_workflows/workflows/relax/fleur/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
"""Module with the implementations of the common structure relaxation workchain for FLEUR."""
42
from .generator import *
53
from .workchain import *

src/aiida_common_workflows/workflows/relax/fleur/extractors.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""
32
Collects some functions to postprocess a `FleurCommonRelaxWorkChain`.
43
"""

src/aiida_common_workflows/workflows/relax/fleur/generator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Implementation of `aiida_common_workflows.common.relax.generator.CommonRelaxInputGenerator` for FLEUR."""
32
import collections
43
import pathlib

src/aiida_common_workflows/workflows/relax/fleur/workchain.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Implementation of `aiida_common_workflows.common.relax.workchain.CommonRelaxWorkChain` for FLEUR (www.flapw.de)."""
32
from aiida import orm
43
from aiida.engine import calcfunction

src/aiida_common_workflows/workflows/relax/gaussian/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
"""Module with the implementations of the common structure relaxation workchain for Gaussian."""
42
from .generator import *
53
from .workchain import *

src/aiida_common_workflows/workflows/relax/gaussian/generator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Implementation of `aiida_common_workflows.common.relax.generator.CommonRelaxInputGenerator` for Gaussian."""
32
import copy
43
import typing as t

src/aiida_common_workflows/workflows/relax/gaussian/workchain.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Implementation of `aiida_common_workflows.common.relax.workchain.CommonRelaxWorkChain` for Gaussian."""
32
import numpy as np
43
from aiida import orm

src/aiida_common_workflows/workflows/relax/generator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Module with base input generator for the common structure relax workchains."""
32
import abc
43

src/aiida_common_workflows/workflows/relax/gpaw/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
"""Module with the implementations of the common structure relaxation workchain for GPAW."""
42
from .generator import *
53
from .workchain import *

src/aiida_common_workflows/workflows/relax/gpaw/generator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Implementation of `aiida_common_workflows.common.relax.generator.CommonRelaxInputGenerator` for GPAW."""
32
from __future__ import annotations
43

src/aiida_common_workflows/workflows/relax/gpaw/workchain.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Implementation of `aiida_common_workflows.common.relax.workchain.CommonRelaxWorkChain` for GPAW."""
32
from aiida import orm
43
from aiida.engine import calcfunction

src/aiida_common_workflows/workflows/relax/nwchem/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
"""Module with the implementations of the common structure relaxation workchain for NWChem."""
42
from .generator import *
53
from .workchain import *

src/aiida_common_workflows/workflows/relax/nwchem/generator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Implementation of `aiida_common_workflows.common.relax.generator.CommonRelaxInputGenerator` for NWChem."""
32
import pathlib
43
import warnings

src/aiida_common_workflows/workflows/relax/nwchem/workchain.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Implementation of `aiida_common_workflows.common.relax.workchain.CommonRelaxWorkChain` for NWChem."""
32
import numpy as np
43
from aiida import orm

src/aiida_common_workflows/workflows/relax/orca/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
"""Module with the implementations of the common structure relaxation workchain for Orca."""
42
from .generator import *
53
from .workchain import *

src/aiida_common_workflows/workflows/relax/orca/generator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Implementation of `aiida_common_workflows.common.relax.generator.CommonRelaxInputGenerator` for Orca."""
32
import os
43
import warnings

src/aiida_common_workflows/workflows/relax/orca/workchain.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Implementation of `aiida_common_workflows.common.relax.workchain.CommonRelaxWorkChain` for Orca."""
32
import numpy as np
43
from aiida.engine import calcfunction

src/aiida_common_workflows/workflows/relax/quantum_espresso/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
"""Module with the implementations of the common structure relaxation workchain for Quantum ESPRESSO."""
42
from .generator import *
53
from .workchain import *

src/aiida_common_workflows/workflows/relax/quantum_espresso/extractors.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""
32
Post-processing extractor functions for the ``QuantumEspressoCommonRelaxWorkChain``.
43
"""

src/aiida_common_workflows/workflows/relax/quantum_espresso/generator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Implementation of `aiida_common_workflows.common.relax.generator.CommonRelaxInputGenerator` for Quantum ESPRESSO."""
32
from importlib import resources
43

src/aiida_common_workflows/workflows/relax/quantum_espresso/workchain.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Implementation of `aiida_common_workflows.common.relax.workchain.CommonRelaxWorkChain` for Quantum ESPRESSO."""
32
import pint
43
from aiida import orm

src/aiida_common_workflows/workflows/relax/siesta/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
"""Module with the implementations of the common structure relaxation workchain for Siesta."""
42
from .generator import *
53
from .workchain import *

src/aiida_common_workflows/workflows/relax/siesta/extractors.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""
32
Collects some functions to postprocess a `CommonWorkflowSiestaWorkChain`.
43
"""

src/aiida_common_workflows/workflows/relax/siesta/generator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Implementation of `aiida_common_workflows.common.relax.generator.CommonRelaxInputGenerator` for SIESTA."""
32
import os
43

src/aiida_common_workflows/workflows/relax/siesta/workchain.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""Implementation of `aiida_common_workflows.common.relax.workchain.CommonRelaxWorkChain` for SIESTA."""
32
from aiida import orm
43
from aiida.engine import calcfunction

src/aiida_common_workflows/workflows/relax/vasp/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
"""Module with the implementations of the common structure relaxation workchain for VASP."""
42
from .generator import *
53
from .workchain import *

src/aiida_common_workflows/workflows/relax/vasp/extractors.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
"""
32
Collects some functions to postprocess a `VaspCommonRelaxWorkChain`.
43
"""

0 commit comments

Comments
 (0)