Fix timestamp parsing (#415)

Fixes #407
This commit is contained in:
James Hilton-Balfe
2023-10-16 03:35:32 +01:00
committed by GitHub
parent c82816b8be
commit e3b44f491f
4 changed files with 37 additions and 5 deletions

View File

@@ -62,9 +62,13 @@ help = "Run tests"
cmd = "mypy src --ignore-missing-imports"
help = "Check types with mypy"
[tool.poe.tasks]
_black = "black . --exclude tests/output_ --target-version py310"
_isort = "isort . --extend-skip-glob 'tests/output_*/**/*'"
[tool.poe.tasks.format]
cmd = "black . --exclude tests/output_ --target-version py310"
help = "Apply black formatting to source code"
sequence = ["_black", "_isort"]
help = "Apply black and isort formatting to source code"
[tool.poe.tasks.docs]
cmd = "sphinx-build docs docs/build"