Skip to content

Commit

Permalink
fix rebase conflict in _skip_nonitem_fields
Browse files Browse the repository at this point in the history
  • Loading branch information
BurnzZ committed Mar 1, 2023
1 parent 77b06ca commit 0096c8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web_poet/pages.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import abc
from typing import Any, ClassVar, Generic, List, Type, TypeVar, Union
from typing import Any, Generic, List, Type, TypeVar

import attrs

Expand Down Expand Up @@ -70,7 +70,7 @@ class ItemPage(Injectable, Returns[ItemT]):
kw_only=True,
default=None,
)
_skip_nonitem_fields = ClassVar[Union[_NOT_SET, bool]]
_skip_nonitem_fields = _NOT_SET

def _get_skip_nonitem_fields(self) -> bool:
value = self._skip_nonitem_fields
Expand Down

0 comments on commit 0096c8e

Please sign in to comment.