Skip to content

Commit a6abbd2

Browse files
committed
Reruns black
1 parent 15a7b20 commit a6abbd2

File tree

7 files changed

+7
-14
lines changed

7 files changed

+7
-14
lines changed

examples/observers/registering_an_observer/print_observer.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""A simple example of how to log objective function calls.
2-
"""
1+
"""A simple example of how to log objective function calls."""
32

43
import numpy as np
54

src/poli/core/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
"""Core classes and utilities inside poli
2-
"""
1+
"""Core classes and utilities inside poli"""
32

43
# from .registry import get_problems

src/poli/core/registry.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""This module contains utilities for registering problems and observers.
2-
"""
1+
"""This module contains utilities for registering problems and observers."""
32

43
import configparser
54
import warnings

src/poli/core/util/objective_management/make_run_script.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""This module contains utilities for creating run scripts for problems and observers.
2-
"""
1+
"""This module contains utilities for creating run scripts for problems and observers."""
32

43
import inspect
54
import os

src/poli/core/util/observer_wrapper.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""Script that gets called by the mother process to start an external observer process.
2-
"""
1+
"""Script that gets called by the mother process to start an external observer process."""
32

43
import argparse
54
import sys

src/poli/core/util/proteins/pdb_parsing.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""This module contains utilities for loading PDB files and parsing them.
2-
"""
1+
"""This module contains utilities for loading PDB files and parsing them."""
32

43
from pathlib import Path
54
from typing import List

src/poli/objective_repository/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""All objective factories and black boxes inside poli.
2-
"""
1+
"""All objective factories and black boxes inside poli."""
32

43
from pathlib import Path
54

0 commit comments

Comments
 (0)