Skip to content
Snippets Groups Projects
Commit ea0d3b03 authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Resolve missing documentation

The documentation was missing due to a name collision. This resolves the
collision and propogates the changes to other required files.
parent de549e36
No related branches found
No related tags found
1 merge request!991Resolve "Documentation missing for `setup_logger`"
Pipeline #253411 passed
......@@ -7,7 +7,7 @@ from .counter import *
from .docs import *
from .introspection import *
from .io import *
from .logger import *
from .log import *
from .plotting import *
from .progress import *
from .samples import *
......
......@@ -3,7 +3,7 @@ import numpy as np
from scipy.interpolate import interp2d
from scipy.special import logsumexp
from .logger import logger
from .log import logger
def derivatives(vals, func, releps=1e-3, abseps=None, mineps=1e-9, reltol=1e-3,
......
......@@ -3,7 +3,7 @@ import logging
import os
import subprocess
from .logger import logger
from .log import logger
def set_up_command_line_arguments():
......
......@@ -8,7 +8,7 @@ from pathlib import Path
import numpy as np
import pandas as pd
from .logger import logger
from .log import logger
from .introspection import infer_args_from_method
......
File moved
......@@ -2,7 +2,7 @@ import functools
import os
from distutils.spawn import find_executable
from .logger import logger
from .log import logger
def latex_plot_format(func):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment