Skip to content

Commit

Permalink
airflow start
Browse files Browse the repository at this point in the history
  • Loading branch information
cnheider committed Oct 3, 2023
1 parent 411f220 commit f4c751a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion draugr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

__project__ = "Draugr"
__author__ = "Christian Heider Nielsen"
__version__ = "1.1.2"
__version__ = "1.1.3"
__doc__ = r"""
Created on 27/04/2019
Expand Down
1 change: 1 addition & 0 deletions draugr/airflow_utilities/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .enums import *
9 changes: 9 additions & 0 deletions draugr/airflow_utilities/enums.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from enum import Enum
from sorcery import assigned_names


__all__ = ["AutoRemoveEnum"]


class AutoRemoveEnum(Enum):
never, success, force = assigned_names()
Empty file.
Empty file.

0 comments on commit f4c751a

Please sign in to comment.