Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Feb 12, 2024
1 parent d432a6d commit 2a0161f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions doc/tutorials/plot_synthetic.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
This page contains a tutorial, stepping the user through estimating a DEM.
We don't use any real data here, but instead a series of fake lines that have Gaussian contribution functions.
"""

##################################################################
# Start by importing the required modules
import astropy.units as u
Expand Down
1 change: 1 addition & 0 deletions src/demcmc/dem.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Classes for working with DEM data.
"""

from __future__ import annotations

from dataclasses import dataclass
Expand Down
1 change: 1 addition & 0 deletions src/demcmc/emission.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Structures for storing and working with emission lines.
"""

import functools
from abc import ABC, abstractmethod, abstractproperty
from dataclasses import dataclass
Expand Down
1 change: 1 addition & 0 deletions src/demcmc/mcmc.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Functions for carrying out MCMC estimation of DEMs.
"""

from typing import List, Sequence, Tuple

import emcee
Expand Down
1 change: 1 addition & 0 deletions src/demcmc/sample_data.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Load sample data.
"""

from pathlib import Path
from typing import Tuple

Expand Down
1 change: 1 addition & 0 deletions src/demcmc/units.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Definition of global units used throughout demcmc.
"""

import astropy.units as u

u_temp = u.K
Expand Down

0 comments on commit 2a0161f

Please sign in to comment.