Skip to content

Commit

Permalink
requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed Oct 31, 2023
1 parent 9bc8195 commit b5624c2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 38 deletions.
37 changes: 0 additions & 37 deletions requirements.txt

This file was deleted.

1 change: 1 addition & 0 deletions requirements.txt
7 changes: 6 additions & 1 deletion varfish_cli/config.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
"""Common configuration code."""

import os
import tomllib

try:
import tomllib
except ImportError:
import toml as tomllib

import typing

from logzero import logger
Expand Down

0 comments on commit b5624c2

Please sign in to comment.