Skip to content

Commit bf8c686

Browse files
Apply prepare changes
1 parent 605b168 commit bf8c686

21 files changed

+22
-22
lines changed

src/opengeodeweb_back/routes/create/schemas/create_aoi.py

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

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

1111
x: float
@@ -14,7 +14,7 @@ def __post_init__(self):
1414

1515
@dataclass
1616
class CreateAoi(DataClassJsonMixin):
17-
def __post_init__(self):
17+
def __post_init__(self) -> None:
1818
print(self, flush=True)
1919

2020
name: str

src/opengeodeweb_back/routes/create/schemas/create_point.py

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

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

1010
name: str

src/opengeodeweb_back/routes/create/schemas/create_voi.py

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

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

1111
aoi_id: str

src/opengeodeweb_back/routes/models/schemas/mesh_components.py

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

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

1010
id: str

src/opengeodeweb_back/routes/models/schemas/vtm_component_indices.py

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

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

1010
id: str

src/opengeodeweb_back/routes/schemas/allowed_files.py

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

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

1111
supported_feature: Optional[str] = None

src/opengeodeweb_back/routes/schemas/allowed_objects.py

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

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

1111
filename: str

src/opengeodeweb_back/routes/schemas/export_project.py

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

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

1111
filename: str

src/opengeodeweb_back/routes/schemas/geode_objects_and_output_extensions.py

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

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

1010
filename: str

src/opengeodeweb_back/routes/schemas/geographic_coordinate_systems.py

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

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

1010
input_geode_object: str

0 commit comments

Comments
 (0)