Skip to content

Commit

Permalink
add back FileType (temporarily)
Browse files Browse the repository at this point in the history
  • Loading branch information
fritz-astronomer committed Aug 29, 2024
1 parent f53e67a commit 45f4270
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions orbiter/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
from __future__ import annotations

import re
from enum import Enum
from typing import Any, Tuple

__version__ = "1.1.0"

version = __version__


class FileType(Enum):
YAML = "YAML"
XML = "XML"
JSON = "JSON"


def clean_value(s: str):
"""Cleans a string to be a standard value, such as one that might be a python variable name
Expand Down

0 comments on commit 45f4270

Please sign in to comment.