Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[stdlib] Add Linked List #3942

Draft
wants to merge 1 commit into
base: nightly
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion stdlib/scripts/check_licenses.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ def main():
# this is the current file
continue
file_path = Path(target_paths[i])
if not file_path.read_text().startswith(LICENSE):
var text: String = file_path.read_text()
if not text.as_string_slice().startswith(LICENSE):
files_without_license.append(file_path)

if len(files_without_license) > 0:
Expand Down
1 change: 1 addition & 0 deletions stdlib/src/collections/__init__.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ from .list import List
from .optional import Optional, OptionalReg
from .set import Set
from .vector import InlinedFixedVector
from .linked_list import LinkedList
Loading
Loading