Skip to content

Commit

Permalink
Alternate (probably more correct) fix for #3182 (supercedes #3183) (#…
Browse files Browse the repository at this point in the history
…3185)

Co-authored-by: Dillon Stadther <dlstadther@gmail.com>
  • Loading branch information
mzpqnxow and dlstadther committed Jul 15, 2022
1 parent f2d49ab commit afa6ba3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion luigi/configuration/toml_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
# limitations under the License.
#
import os.path
from configparser import ConfigParser

try:
import toml
Expand All @@ -25,7 +26,7 @@
from ..freezing import recursively_freeze


class LuigiTomlParser(BaseParser):
class LuigiTomlParser(BaseParser, ConfigParser):
NO_DEFAULT = object()
enabled = bool(toml)
data = dict()
Expand Down

0 comments on commit afa6ba3

Please sign in to comment.