Skip to content

Commit

Permalink
update renderer abstract class
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuyuutsu committed Oct 16, 2024
1 parent 4f7f443 commit cfcaa2b
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions app/questionnaire/renderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,6 @@


class Renderer(ABC):
@abstractmethod
def __init__(
self,
language: str,
data_stores: DataStores,
schema: QuestionnaireSchema,
location: LocationType | None = None,
placeholder_preview_mode: bool | None = False,
):
self._placeholder_preview_mode = placeholder_preview_mode
self._language = language
self._data_stores = data_stores
self._schema = schema
self._location = location

@abstractmethod
def render( # pragma: no cover
self,
Expand Down

0 comments on commit cfcaa2b

Please sign in to comment.