Skip to content

Commit 82d2a8c

Browse files
committed
fix linting
1 parent fecd0f2 commit 82d2a8c

File tree

4 files changed

+257
-206
lines changed

4 files changed

+257
-206
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,6 @@ Then you can use the tools directly:
210210
```bash
211211
flake8 github_backup/ # Run linting
212212
black github_backup/ # Format code
213-
black --check github_backup/ # Check formatting
214213
python -c "import github_backup; print('Import successful')" # Test import
215214
github-backup --help # Show CLI help
216215
uv build # Build package

github_backup/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
def main():
2929
args = parse_args()
30-
30+
3131
# Set logging level based on arguments
3232
if args.quiet:
3333
logger.setLevel(logging.WARNING)
@@ -41,7 +41,7 @@ def main():
4141
# Default to INFO level
4242
logger.setLevel(logging.INFO)
4343
logger.root.setLevel(logging.INFO)
44-
44+
4545
try:
4646
validate_args(args)
4747

0 commit comments

Comments
 (0)