Add base module

This commit is contained in:
David Doblas Jiménez 2024-02-21 20:46:59 +01:00
parent 103837cb73
commit 30ee2098ab
3 changed files with 5 additions and 0 deletions

3
ruff.toml Normal file
View File

@ -0,0 +1,3 @@
[lint]
select = ["E", "F"]
ignore = ["F401"]

1
ugit/base.py Normal file
View File

@ -0,0 +1 @@
from . import data

View File

@ -3,6 +3,7 @@ from pathlib import Path
import argparse
import sys
from . import base
from . import data