Last active
January 24, 2019 22:15
-
-
Save adw0rd/f9ade3b8bd04c2dabb19aa1913258227 to your computer and use it in GitHub Desktop.
merge or not
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def _make_shift_statistic(self): | |
"""Make result and persent statistic by shift. | |
""" | |
result = self._give_by_shift() | |
result.pop('rock_mass', None) | |
return self.statistic( | |
result, | |
'Повахтовый выход, %', | |
'Повахтовая добыча м\u00B3' | |
) | |
def _make_horizont_statistic(self): | |
"""Make result and persent statistic by horizont. | |
""" | |
result = self._give_by_horiz() | |
result.pop('rock_mass', None) | |
return self.statistic( | |
result, | |
'Погоризонтный выход, %', | |
'Погоризонтная добыча, м\u00B3' | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment