From 5923b75982c7cf90661a13ebbc4b96512d732875 Mon Sep 17 00:00:00 2001 From: Illya Laifu Date: Wed, 1 Jan 2025 21:53:23 +0200 Subject: [PATCH] feat: remove Replica constructor in favor of staticmethods --- taskchampion.pyi | 1 - 1 file changed, 1 deletion(-) diff --git a/taskchampion.pyi b/taskchampion.pyi index f587d0d..c5c411e 100644 --- a/taskchampion.pyi +++ b/taskchampion.pyi @@ -3,7 +3,6 @@ from enum import Enum from typing import Optional, Iterator class Replica: - def __init__(self, path: str, create_if_missing: bool): ... @staticmethod def new_on_disk(path: str, create_if_missing: bool): ... @staticmethod