Use only Python

This commit is contained in:
Lucàs
2023-12-26 22:09:40 +01:00
parent 31f70d319f
commit efbf7fb7cc
33 changed files with 625 additions and 391 deletions
+10
View File
@@ -0,0 +1,10 @@
class Skill:
def __init__(self, name: str, url: str):
self.name = name
self.url = url
def __str__(self):
return f"![{self.name}]({self.url})"
def __repr__(self):
return f"![{self.name}]({self.url})"