Skip to content

Commit 5d1eb7b

Browse files
fix: format
1 parent ba8860f commit 5d1eb7b

File tree

8 files changed

+0
-8
lines changed

8 files changed

+0
-8
lines changed

jtd_codebuild/generators/csharp/_generator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44

55
class CSharpJTDCodeGenerator(JTDCodeGenerator):
6-
76
def _codegen_command(self, target: CSharpTarget) -> str:
87
schema_path = self.get_schema_path()
98
output_dir = self.get_target_path(target)

jtd_codebuild/generators/go/_generator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44

55
class GoJTDCodeGenerator(JTDCodeGenerator):
6-
76
def _codegen_command(self, target: GoTarget) -> str:
87
schema_path = self.get_schema_path()
98
output_dir = self.get_target_path(target)

jtd_codebuild/generators/java/_generator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44

55
class JavaJTDCodeGenerator(JTDCodeGenerator):
6-
76
def _codegen_command(self, target: JavaTarget) -> str:
87
schema_path = self.get_schema_path()
98
output_dir = self.get_target_path(target)

jtd_codebuild/generators/ruby/_generator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44

55
class RubyJTDCodeGenerator(JTDCodeGenerator):
6-
76
def _codegen_command(self, target: RubyTarget) -> str:
87
schema_path = self.get_schema_path()
98
output_dir = self.get_target_path(target)

jtd_codebuild/generators/rust/_generator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@
33

44

55
class RustJTDCodeGenerator(JTDCodeGenerator):
6-
76
def generate(self, target: RustTarget) -> None:
87
return super().generate(target)

jtd_codebuild/inheritance.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
class InheritanceResolver(Component):
77
def resolve(self, schema: dict) -> dict:
8-
98
def resolve_inheritance_recursively(
109
schema: dict,
1110
name: str,

jtd_codebuild/logger/_logger.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33

44
class Logger(metaclass=abc.ABCMeta):
5-
65
@abc.abstractmethod
76
def debug(self, message: str, *args, **kwargs) -> None:
87
pass

jtd_codebuild/preset/_preset.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@
33

44

55
class Preset(Component, metaclass=abc.ABCMeta):
6-
76
def generate(self, cwd: str, **options):
87
raise NotImplementedError

0 commit comments

Comments
 (0)