Skip to content

Commit

Permalink
Pipeline fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake Skipper committed Dec 4, 2023
1 parent 8bb633d commit e4722d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion runway/_logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ def has_value(cls, value: int) -> bool:
return value in cls._value2member_map_ # pylint: disable=no-member


class PrefixAdaptor(logging.LoggerAdapter[Any]):
# Issue with this version of LoggerAdapter https://github.com/python/typeshed/issues/7855
class PrefixAdaptor(logging.LoggerAdapter): # type: ignore
"""LoggerAdapter that adds prefixes to messages.
Example:
Expand Down

0 comments on commit e4722d1

Please sign in to comment.