Compare commits

...

2 Commits

Author SHA1 Message Date
David Doblas Jiménez 30ee2098ab Add base module 2024-02-21 20:46:59 +01:00
David Doblas Jiménez 103837cb73 Add change 07 instructions 2024-02-21 20:36:07 +01:00
4 changed files with 5 additions and 0 deletions

0
how_to/Change_07.md Normal file
View File

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