Skip to content

Commit

Permalink
fixup! 🐛 Fix unresolved conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
michprev committed Dec 4, 2024
1 parent 703abe7 commit d2e95ca
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions wake/development/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import logging
import math
import warnings
import logging
from dataclasses import dataclass
from functools import lru_cache
from json import JSONDecodeError
Expand Down Expand Up @@ -62,7 +61,7 @@
# pyright: reportGeneralTypeIssues=false, reportOptionalIterable=false, reportOptionalSubscript=false, reportOptionalMemberAccess=false


dummy_logger = logging.getLogger('dummy')
dummy_logger = logging.getLogger("dummy")
dummy_logger.addHandler(logging.NullHandler())
dummy_logger.propagate = False

Expand Down Expand Up @@ -1718,7 +1717,9 @@ def _get_storage_layout_from_explorer(
compiler.compile_unit_raw(
compilation_units[0],
parsed_version,
compiler.create_build_settings([SolcOutputSelectionEnum.STORAGE_LAYOUT], None),
compiler.create_build_settings(
[SolcOutputSelectionEnum.STORAGE_LAYOUT], None
),
dummy_logger,
)
)
Expand Down

0 comments on commit d2e95ca

Please sign in to comment.