Skip to content
New issue

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

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

Already on GitHub? # to your account

Broaden a pylint ignore. #1029

Merged
merged 1 commit into from
Mar 11, 2022
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ public String generatePythonCode(FederateInstance federate) {
return String.join("\n",
"# List imported names, but do not use pylint's --extension-pkg-allow-list option",
"# so that these names will be assumed present without having to compile and install.",
"from LinguaFranca"+topLevelName+" import ( # pylint: disable=no-name-in-module",
"from LinguaFranca"+topLevelName+" import ( # pylint: disable=no-name-in-module, import-error",
" Tag, action_capsule_t, compare_tags, get_current_tag, get_elapsed_logical_time,",
" get_elapsed_physical_time, get_logical_time, get_microstep, get_physical_time,",
" get_start_time, port_capsule, port_instance_token, request_stop, schedule_copy,",
Expand Down