Skip to content

Instantly share code, notes, and snippets.

@adw0rd
Last active January 24, 2019 22:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adw0rd/f9ade3b8bd04c2dabb19aa1913258227 to your computer and use it in GitHub Desktop.
Save adw0rd/f9ade3b8bd04c2dabb19aa1913258227 to your computer and use it in GitHub Desktop.
merge or not
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