소스 검색

rename func

Bastien Sevajol 6 년 전
부모
커밋
47a14d5732
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      opencombat/strategy/troops.py

+ 2 - 2
opencombat/strategy/troops.py 파일 보기

@@ -32,11 +32,11 @@ class Troop(object):
32 32
     @property
33 33
     def subjects(self) -> typing.List[TileSubject]:
34 34
         if self._subjects is None:
35
-            self._subjects = self.get_computed_subjects()
35
+            self._subjects = self._get_computed_subjects()
36 36
 
37 37
         return self._subjects
38 38
 
39
-    def get_computed_subjects(self) -> typing.List[TileSubject]:
39
+    def _get_computed_subjects(self) -> typing.List[TileSubject]:
40 40
         units_file_path = self._config.get(
41 41
             'global.units',
42 42
             'opencombat/strategy/units.xml',