[Refactor] view.py以下でself使っていなかった関数に@staticmethodデコレータ追加

This commit is contained in:
Sakamoto Shiina
2023-09-06 04:56:11 +09:00
parent 83fab83f5b
commit 9583203a35
2 changed files with 40 additions and 20 deletions

View File

@@ -180,5 +180,6 @@ class UiScalingManager():
size += 1 if not is_allowed_odd and size % 2 != 0 else 0
return size
def dupTuple(self, value):
@staticmethod
def dupTuple(value):
return (value, value)