Skip to content

Commit

Permalink
chore: update .gitignore and clean up code formatting fr fr 🧹
Browse files Browse the repository at this point in the history
- Added .venv, .env, and .envrc to .gitignore for better environment management
- Ensured consistent formatting in __init__.py and coordinator.py by adding missing newlines

no cap, just tidy code vibes fr fr
  • Loading branch information
UltraInstinct0x committed Jan 7, 2025
1 parent 0d4e083 commit 80500f5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Python
__pycache__/
.backups/
.venv/
.env/
.envrc/
*.py[cod]
*$py.class
*.so
Expand Down
2 changes: 1 addition & 1 deletion smolswarms/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
from .swarm import Swarm

__version__ = "0.1.0"
__all__ = ["SwarmFactory", "Swarm", "AgentSpec", "BusinessUnit"]
__all__ = ["SwarmFactory", "Swarm", "AgentSpec", "BusinessUnit"]
2 changes: 1 addition & 1 deletion smolswarms/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ def __init__(self) -> None:

def setup_memory(self) -> None:
"""Set up that persistent memory storage no cap."""
self.memory_path.parent.mkdir(exist_ok=True)
self.memory_path.parent.mkdir(exist_ok=True)

0 comments on commit 80500f5

Please # to comment.