+full refactor
+feat: configuration, progress bar, OSV
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
from __future__ import annotations
|
||||
|
||||
try:
|
||||
import tomllib as _toml
|
||||
except ImportError:
|
||||
import tomli as _toml
|
||||
|
||||
def loads(text: str):
|
||||
return _toml.loads(text)
|
||||
Reference in New Issue
Block a user