Skip to content

Commit

Permalink
Add underscore to private function in the precompute command
Browse files Browse the repository at this point in the history
  • Loading branch information
adamrehn committed Aug 13, 2020
1 parent c614591 commit e6aa2e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conan_ue4cli/commands/precompute.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


# Retrieves the Unreal Engine module name for a third-party library wrapper package
def getUnrealModule(package):
def _getUnrealModule(package):

# Verify that the specified package is a wrapper package
if package['version'] != 'ue4' or package['description'] != 'GENERATED WRAPPER FOR: {}'.format(package['name']):
Expand Down Expand Up @@ -93,7 +93,7 @@ def precompute(manager, argv):
continue

# If the dependency is an Unreal-bundled library that we can safely use in Installed Builds, link to its module directly
module = getUnrealModule(dependency)
module = _getUnrealModule(dependency)
if module is not None and module in UNREAL_MODULE_WHITELIST:
flags['unreal_modules'].append(module)
continue
Expand Down

0 comments on commit e6aa2e9

Please sign in to comment.