From e36a08055b084f5ca1640e7ceae01bb199ef315a Mon Sep 17 00:00:00 2001 From: Cannon Lock Date: Wed, 24 Apr 2024 12:33:49 -0500 Subject: [PATCH] Allow patches without changing name --- api/models/source.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/models/source.py b/api/models/source.py index a9b7382..6d4e715 100644 --- a/api/models/source.py +++ b/api/models/source.py @@ -34,4 +34,4 @@ class Get(Post): class Patch(Post): - pass + name: Optional[str] = None