Skip to content

Commit 5bfe3ec

Browse files
committed
chore: Regen tests
1 parent be5c2f7 commit 5bfe3ec

File tree

2 files changed

+4
-4
lines changed
  • end_to_end_tests/golden-record/my_test_api_client
  • integration-tests/integration_tests

2 files changed

+4
-4
lines changed

end_to_end_tests/golden-record/my_test_api_client/types.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
""" Contains some shared types for properties """
22
from http import HTTPStatus
3-
from typing import BinaryIO, Generic, MutableMapping, Optional, Tuple, TypeVar
3+
from typing import BinaryIO, Generic, Literal, MutableMapping, Optional, Tuple, TypeVar
44

55
import attr
66

77

88
class Unset:
9-
def __bool__(self) -> bool:
9+
def __bool__(self) -> Literal[False]:
1010
return False
1111

1212

integration-tests/integration_tests/types.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
""" Contains some shared types for properties """
22
from http import HTTPStatus
3-
from typing import BinaryIO, Generic, MutableMapping, Optional, Tuple, TypeVar
3+
from typing import BinaryIO, Generic, Literal, MutableMapping, Optional, Tuple, TypeVar
44

55
import attr
66

77

88
class Unset:
9-
def __bool__(self) -> bool:
9+
def __bool__(self) -> Literal[False]:
1010
return False
1111

1212

0 commit comments

Comments
 (0)