-
Notifications
You must be signed in to change notification settings - Fork 23
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
Added assign_frequency_scale_factor() to Level #750
Conversation
453dc04
to
8d57f9d
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #750 +/- ##
==========================================
+ Coverage 73.71% 73.74% +0.02%
==========================================
Files 99 99
Lines 27454 27472 +18
Branches 5783 5781 -2
==========================================
+ Hits 20238 20259 +21
Misses 5765 5765
+ Partials 1451 1448 -3
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
4424bf7
to
15a8773
Compare
arc/main.py
Outdated
@@ -37,7 +36,7 @@ | |||
) | |||
from arc.exceptions import InputError, SettingsError, SpeciesError | |||
from arc.imports import settings | |||
from arc.level import Level | |||
from arc.level import Level,assign_frequency_scale_factor |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing space
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kfir4444, thanks - fixed
replacing a call to Arkane
Instead of Arkane's function
instead, just return the freq variant with the software info (Arkane should be able to deal with it and remove the software info if not needed)
before splitting them as str in ARC.as_dict() to avoid an IndexError
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Added the data as a YAML file, the respective functionality, and tests