"Added import statement for Optional type from typing module."

This commit is contained in:
mjk22071998 2024-10-01 15:45:29 +05:00
parent 53bd3be495
commit 4cb8282bd1

View File

@ -1,5 +1,6 @@
from __future__ import annotations from __future__ import annotations
from typing import Optional
from dataclasses import dataclass from dataclasses import dataclass
# This is a sorted linked list class that creates # This is a sorted linked list class that creates