##// END OF EJS Templates
declare `MaybeAsyncCompile.__call__()` as a method
Artur Svistunov -
Show More
@@ -782,7 +782,8 b' class MaybeAsyncCompile(Compile):'
782 super().__init__()
782 super().__init__()
783 self.flags |= extra_flags
783 self.flags |= extra_flags
784
784
785 __call__ = compile
785 def __call__(self, *args, **kwds):
786 return compile(*args, **kwds)
786
787
787
788
788 class MaybeAsyncCommandCompiler(CommandCompiler):
789 class MaybeAsyncCommandCompiler(CommandCompiler):
General Comments 0
You need to be logged in to leave comments. Login now