Open MarcSkovMadsen opened 4 years ago
I have a feeling it would be better to make the tags in the tags.py file child classes of Component child. Right now they are tag_function functions.
tags.py
tag_function
Component
Maybe it does not matter. Right now it is just a feeling.
The implication would be that the tags should be PascalCase and that the make_a_tag_function should return a Class instead of a function.
make_a_tag_function
Class
function
I thought that I should use functions where class functionality is not really required, as functions are more lightweight.
I have a feeling it would be better to make the tags in the
tags.py
file child classes of Component child. Right now they aretag_function
functions.Component
.Maybe it does not matter. Right now it is just a feeling.
The implication would be that the tags should be PascalCase and that the
make_a_tag_function
should return aClass
instead of afunction
.