0 comments (0 comments)0 reactions (0 reactions)0 assignees (0 assignees)Scala1,461 stars (1,461 stars)312 forks (312 forks)batch import
enhancementhelp wanted
Description
It'd be helpful to adopt a python formatter like Black to standardize the syntax and code style.
Contributor guide
- Tech stack
- python
- Domain
- developer experiencetooling
- Issue type
- chore
- DifficultyEstimated implementation difficulty for a new contributor, from 1 for very small changes to 5 for expert-level work.
- 2
- Estimated timeA rough time range for an experienced contributor to investigate, implement, test, and prepare a pull request.
- 1-3 hours
- Activity statusHow available the issue appears right now: fresh, active, stale, blocked, or waiting on maintainer input.
- stale
- ClarityHow clearly the issue explains the expected change, acceptance criteria, and next step.
- clear
- Prerequisites
- Basic Python familiarityUnderstanding of code formatters
- Newbie friendlinessA 1-100 score estimating how approachable this issue is for first-time contributors.
- 70
- Research direction
- The issue suggests adopting Black as a Python formatter. First, check if there are any Python files in the repository (likely in 'mleap/python' or similar). If so, create a 'pyproject.toml' or 'setup.cfg' with Black configuration (line length, target version, etc.). Then run Black on the existing Python files to reformat them. Finally, add a CI step (e.g., GitHub Actions) to run 'black check' on pull requests to enforce formatting. No linked PRs or comments, so this is a straightforward implementation.