Skip to content

Commit

Permalink
Add pretty_print method to Board class
Browse files Browse the repository at this point in the history
  • Loading branch information
maxblan committed Apr 15, 2024
1 parent 7128e19 commit 28692f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions python/socha/_socha.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,8 @@ class Board:
board.find_nearest_field_types(CubeCoordinates(0, 0), FieldType.Water)
```
"""

def pretty_print(self) -> None: ...


class TeamPoints:
Expand Down
2 changes: 1 addition & 1 deletion src/plugin/game_state.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::cmp::Ordering;
use std::mem::swap;

use log::{ debug, info };
use log::debug;
use pyo3::exceptions::PyBaseException;
use pyo3::prelude::*;

Expand Down

0 comments on commit 28692f8

Please sign in to comment.