Skip to content

Commit

Permalink
[STYLE] Apply Black formatting to Python files
Browse files Browse the repository at this point in the history
Applied Black code formatter to maintain consistent code style:

- Reformatted _version.py
- Reformatted cheques_tests.py
- Reformatted estadisticas_cambiarias_tests.py

No functional changes, only code style adjustments.
  • Loading branch information
PPeitsch committed Nov 20, 2024
1 parent 2adefe9 commit 3938858
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/bcra_connector/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file is auto-generated by Hatchling. As such, do not:
# - modify
# - track in version control e.g. be sure to add to .gitignore
__version__ = VERSION = '0.3.3'
__version__ = VERSION = "0.3.3"
1 change: 0 additions & 1 deletion tests/cheques_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@


class TestCheques(unittest.TestCase):

def test_entidad(self):
data = {"codigoEntidad": 11, "denominacion": "BANCO DE LA NACION ARGENTINA"}
entidad = Entidad.from_dict(data)
Expand Down
1 change: 0 additions & 1 deletion tests/estadisticas_cambiarias_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@


class TestEstadisticasCambiarias(unittest.TestCase):

def test_divisa(self):
data = {"codigo": "USD", "denominacion": "DOLAR ESTADOUNIDENSE"}
divisa = Divisa.from_dict(data)
Expand Down

0 comments on commit 3938858

Please sign in to comment.