From 89fb62bf06626c32e4326b5256ce501a80e68d87 Mon Sep 17 00:00:00 2001 From: Sean Breckenridge Date: Wed, 12 May 2021 21:13:21 -0700 Subject: [PATCH] smscalls: allow multiple backup dirs --- my/smscalls.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/my/smscalls.py b/my/smscalls.py index 50e4b6c..25acf4b 100644 --- a/my/smscalls.py +++ b/my/smscalls.py @@ -5,13 +5,13 @@ Exported using https://play.google.com/store/apps/details?id=com.riteshsahu.SMSB REQUIRES = ['lxml'] -from .core import PathIsh, dataclass +from .core import Paths, dataclass from my.config import smscalls as user_config @dataclass class smscalls(user_config): - # directory that SMSBackupRestore syncs XML files to - export_path: PathIsh + # path[s] that SMSBackupRestore syncs XML files to + export_path: Paths from .core.cfg import make_config config = make_config(smscalls)