Skip to content

Commit 385b804

Browse files
committed
Apply ruff --fix .
1 parent 71bf183 commit 385b804

File tree

12 files changed

+12
-6
lines changed

12 files changed

+12
-6
lines changed

examples/bank_reserves/bank_reserves/agents.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"""
1212

1313
import mesa
14+
1415
from .random_walk import RandomWalker
1516

1617

examples/bank_reserves/bank_reserves/model.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
import mesa
1414
import numpy as np
15+
1516
from .agents import Bank, Person
1617

1718
"""

examples/bank_reserves/bank_reserves/server.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import mesa
2+
23
from .agents import Person
34
from .model import BankReserves
45

examples/charts/charts/agents.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"""
1212

1313
import mesa
14+
1415
from .random_walk import RandomWalker
1516

1617

examples/charts/charts/model.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
import mesa
1414
import numpy as np
15+
1516
from .agents import Bank, Person
1617

1718
"""

examples/hex_snowflake/hex_snowflake/model.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import mesa
2+
23
from .cell import Cell
34

45

examples/sugarscape_cg/sugarscape_cg/model.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@
99
Northwestern University, Evanston, IL.
1010
"""
1111

12-
import mesa
1312
from pathlib import Path
1413

14+
import mesa
15+
1516
from .agents import SsAgent, Sugar
1617

1718

examples/sugarscape_g1mt/sugarscape_g1mt/model.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from pathlib import Path
2+
23
import mesa
34
import numpy as np
45

examples/wolf_sheep/wolf_sheep/server.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import mesa
2-
32
from wolf_sheep.agents import GrassPatch, Sheep, Wolf
43
from wolf_sheep.model import WolfSheep
54

examples/wolf_sheep/wolf_sheep/test_random_walk.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
from mesa.space import MultiGrid
88
from mesa.time import RandomActivation
99
from mesa.visualization.TextVisualization import TextGrid, TextVisualization
10-
1110
from wolf_sheep.random_walk import RandomWalker
1211

1312

0 commit comments

Comments
 (0)