Skip to content

Commit

Permalink
Fix unresolvable toml import
Browse files Browse the repository at this point in the history
  • Loading branch information
ByteOtter committed Aug 1, 2023
1 parent 0a9a7e0 commit 33140dc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/nester/core/opinionated/opinionated_creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@
import subprocess
from typing import Any

import toml
import yaml

try:
import tomllib as toml
except ImportError:
import toml

from . import exceptions, supported_linters


Expand Down

0 comments on commit 33140dc

Please sign in to comment.