Skip to content

Commit cc30732

Browse files
committed
linted
1 parent 1ea4d60 commit cc30732

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/masoniteorm/collection/Collection.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def max(self, key=None):
109109
except (TypeError, ValueError):
110110
pass
111111
return result
112-
112+
113113
def min(self, key=None):
114114
"""Returns the min of the items.
115115

tests/models/test_models.py

-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,6 @@ def test_only_method(self):
191191
{"id": 1, "username": "joe", "name": "Joe", "admin": True}
192192
)
193193

194-
195194
self.assertEquals({"username": "joe"}, model.only("username"))
196195
self.assertEquals({"username": "joe"}, model.only(["username"]))
197196

0 commit comments

Comments
 (0)