Add icon for playground=hopscotch.

This commit is contained in:
Sergey Vartanov 2021-07-16 02:01:08 +03:00
parent 6fefe3d945
commit 2364a5b0f9
6 changed files with 267 additions and 21 deletions

View file

@ -1,7 +1,7 @@
"""
Icon grid drawing.
"""
from dataclasses import dataclass
from dataclasses import dataclass, field
from pathlib import Path
from typing import Dict, List, Optional, Set
@ -24,7 +24,7 @@ class IconCollection:
"""
icons: List[Icon]
selectors: Dict[str, Icon]
selectors: Dict[str, Icon] = field(default_factory=dict)
@classmethod
def from_scheme(