This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sublime | |
import sublime_plugin | |
import os | |
import re | |
class ImportChildModulesCommand(sublime_plugin.TextCommand): | |
def replace_module_name(self, m): | |
return m.group(2).upper() |
OlderNewer