File tree Expand file tree Collapse file tree 4 files changed +257
-206
lines changed
Expand file tree Collapse file tree 4 files changed +257
-206
lines changed Original file line number Diff line number Diff line change @@ -210,7 +210,6 @@ Then you can use the tools directly:
210210``` bash
211211flake8 github_backup/ # Run linting
212212black github_backup/ # Format code
213- black --check github_backup/ # Check formatting
214213python -c " import github_backup; print('Import successful')" # Test import
215214github-backup --help # Show CLI help
216215uv build # Build package
Original file line number Diff line number Diff line change 2727
2828def 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
You can’t perform that action at this time.
0 commit comments