Revert "Pylance typing"

This commit is contained in:
Serene
2022-12-01 12:37:03 +10:00
committed by GitHub
parent d056647a53
commit 45429be27c
4 changed files with 7 additions and 7 deletions

View File

@@ -7,7 +7,7 @@ from praw.models import Comment, Submission
class BaseArchiveEntry(ABC):
def __init__(self, source: Comment | Submission):
def __init__(self, source: (Comment, Submission)):
self.source = source
self.post_details: dict = {}