from dataclasses import dataclass
from typing import Tuple
class Meta(type):
def __new__(cls, name, bases, attrs):
for attr in attrs:
if not attr.startswith("_"):
__annotations__[attr] = Tuple[str, ...]
attrs["__annotations__"] = __annotations__
new_cls = super().__new__(cls, name, bases, attrs)
new_cls = dataclass(new_cls)
return new_cls
class Stack(metaclass=Meta):
languages = ("Python", "Bash")
ongoing = ("C")
print("A little more about me")
Akarata = {
'pronouns': 'he' or 'him' or 'his',
'fullname': 'Prastiko Sasmitho',
'nationality': ['Indonesia', 'ID'],
'location': 'Jakarta,ID',
'contact': {
'email': '[email protected]',
'website': 'https://gmail.com',
},
'about': [
'18 y.o' ,
'A fan of python',
'I\'m considering myself as a runner. (even tho rarely do it) xd',
'Love editing & design',
'Human.',
'If i\'m born again i just want to be myself'
],
}
๐
Don't know what to do
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.