Skip to content

Commit 30348eb

Browse files
committed
universal_code_generatorのimportがおかしい問題を修正
1 parent 9683f9f commit 30348eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

atcodertools/codegen/code_generators/universal_code_generator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
Format
77
from atcodertools.fmtprediction.models.type import Type
88
from atcodertools.fmtprediction.models.variable import Variable
9-
from atcodertools.codegen.code_generators.universal_generator.nim import CodeGeneratorInfo
9+
# TODO why NIM?
1010

1111

1212
class CodeGenerator():
1313

1414
def __init__(self,
1515
format_: Optional[Format[Variable]],
1616
config: CodeStyleConfig,
17-
info: CodeGeneratorInfo):
17+
info):
1818
super(CodeGenerator, self).__init__()
1919
self._format = format_
2020
self._config = config

0 commit comments

Comments
 (0)