Skip to content

Commit 3813918

Browse files
Apply prepare changes
1 parent 90d5c4e commit 3813918

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+67
-67
lines changed

src/opengeodeweb_viewer/rpc/generic/schemas/deregister.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
@dataclass
66
class Deregister(DataClassJsonMixin):
7-
def __post_init__(self):
7+
def __post_init__(self) -> None:
88
print(self, flush=True)
99

1010
id: str

src/opengeodeweb_viewer/rpc/generic/schemas/register.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
@dataclass
66
class Register(DataClassJsonMixin):
7-
def __post_init__(self):
7+
def __post_init__(self) -> None:
88
print(self, flush=True)
99

1010
id: str

src/opengeodeweb_viewer/rpc/mesh/edges/schemas/color.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
@dataclass
77
class ColorClass(DataClassJsonMixin):
8-
def __post_init__(self):
8+
def __post_init__(self) -> None:
99
print(self, flush=True)
1010

1111
b: int
@@ -16,7 +16,7 @@ def __post_init__(self):
1616

1717
@dataclass
1818
class Color(DataClassJsonMixin):
19-
def __post_init__(self):
19+
def __post_init__(self) -> None:
2020
print(self, flush=True)
2121

2222
color: ColorClass

src/opengeodeweb_viewer/rpc/mesh/edges/schemas/size.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
@dataclass
66
class Size(DataClassJsonMixin):
7-
def __post_init__(self):
7+
def __post_init__(self) -> None:
88
print(self, flush=True)
99

1010
id: str

src/opengeodeweb_viewer/rpc/mesh/edges/schemas/vertex_attribute.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
@dataclass
66
class VertexAttribute(DataClassJsonMixin):
7-
def __post_init__(self):
7+
def __post_init__(self) -> None:
88
print(self, flush=True)
99

1010
id: str

src/opengeodeweb_viewer/rpc/mesh/edges/schemas/visibility.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
@dataclass
66
class Visibility(DataClassJsonMixin):
7-
def __post_init__(self):
7+
def __post_init__(self) -> None:
88
print(self, flush=True)
99

1010
id: str

src/opengeodeweb_viewer/rpc/mesh/edges/schemas/width.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
@dataclass
66
class Width(DataClassJsonMixin):
7-
def __post_init__(self):
7+
def __post_init__(self) -> None:
88
print(self, flush=True)
99

1010
id: str

src/opengeodeweb_viewer/rpc/mesh/points/schemas/color.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
@dataclass
77
class ColorClass(DataClassJsonMixin):
8-
def __post_init__(self):
8+
def __post_init__(self) -> None:
99
print(self, flush=True)
1010

1111
b: int
@@ -16,7 +16,7 @@ def __post_init__(self):
1616

1717
@dataclass
1818
class Color(DataClassJsonMixin):
19-
def __post_init__(self):
19+
def __post_init__(self) -> None:
2020
print(self, flush=True)
2121

2222
color: ColorClass

src/opengeodeweb_viewer/rpc/mesh/points/schemas/size.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
@dataclass
66
class Size(DataClassJsonMixin):
7-
def __post_init__(self):
7+
def __post_init__(self) -> None:
88
print(self, flush=True)
99

1010
id: str

src/opengeodeweb_viewer/rpc/mesh/points/schemas/vertex_attribute.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
@dataclass
66
class VertexAttribute(DataClassJsonMixin):
7-
def __post_init__(self):
7+
def __post_init__(self) -> None:
88
print(self, flush=True)
99

1010
id: str

0 commit comments

Comments
 (0)