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

Azure server #689

Open
wants to merge 31 commits into
base: main
Choose a base branch
from

parser: Fixed elif statement in parse_normal_mode_displacement - chan…

123279e
Select commit
Loading
Failed to load commit list.
Open

Azure server #689

parser: Fixed elif statement in parse_normal_mode_displacement - chan…
123279e
Select commit
Loading
Failed to load commit list.
GitHub Advanced Security / CodeQL failed Mar 18, 2024 in 8s

14 new alerts including 5 errors

New alerts in code changed by this pull request

  • 5 errors
  • 1 warning
  • 8 notes

See annotations below for details.

View all branch alerts.

Annotations

Check notice on line 573 in arc/job/adapters/qchem.py

See this annotation in the file changed.

Code scanning / CodeQL

Explicit returns mixed with implicit (fall through) returns Note

Mixing implicit and explicit returns may indicate an error as implicit returns always return None.

Check notice on line 12 in arc/job/adapters/molpro.py

See this annotation in the file changed.

Code scanning / CodeQL

Unused import Note

Import of 're' is not used.

Check notice on line 8 in arc/job/adapters/qchem_test.py

See this annotation in the file changed.

Code scanning / CodeQL

Unused import Note

Import of 'math' is not used.

Check failure on line 1219 in arc/parser.py

See this annotation in the file changed.

Code scanning / CodeQL

Unmatchable dollar in regular expression Error

This regular expression includes an unmatchable dollar at offset 0.

Check failure on line 1220 in arc/parser.py

See this annotation in the file changed.

Code scanning / CodeQL

Unmatchable dollar in regular expression Error

This regular expression includes an unmatchable dollar at offset 0.

Check failure on line 1222 in arc/parser.py

See this annotation in the file changed.

Code scanning / CodeQL

Unmatchable dollar in regular expression Error

This regular expression includes an unmatchable dollar at offset 0.

Check notice on line 441 in arc/job/adapters/qchem.py

See this annotation in the file changed.

Code scanning / CodeQL

Unused local variable Note

Variable remainder is not used.

Check notice on line 150 in arc/job/adapters/qchem_test.py

See this annotation in the file changed.

Code scanning / CodeQL

Unused local variable Note

Variable expected_memory is not used.

Check notice on line 3362 in arc/scheduler.py

See this annotation in the file changed.

Code scanning / CodeQL

Unused local variable Note

Variable trsh_opt is not used.

Check notice on line 582 in arc/job/ssh.py

See this annotation in the file changed.

Code scanning / CodeQL

Unused local variable Note

Variable days is not used.

Check warning on line 494 in arc/job/trsh.py

See this annotation in the file changed.

Code scanning / CodeQL

Variable defined multiple times Warning

This assignment to 'lines' is unnecessary as it is
redefined
before this value is used.
This assignment to 'lines' is unnecessary as it is
redefined
before this value is used.
This assignment to 'lines' is unnecessary as it is
redefined
before this value is used.

Check failure on line 855 in arc/parser.py

See this annotation in the file changed.

Code scanning / CodeQL

Potentially uninitialized local variable Error

Local variable 'log' may be used before it is initialized.

Check failure on line 356 in arc/job/adapters/qchem.py

See this annotation in the file changed.

Code scanning / CodeQL

Potentially uninitialized local variable Error

Local variable 'irc_direction_value' may be used before it is initialized.

Check notice on line 21 in arc/settings/submit_test.py

See this annotation in the file changed.

Code scanning / CodeQL

Imprecise assert Note

assertTrue(a in b) cannot provide an informative message. Using assertIn(a, b) instead will give more informative messages.