Skip to content

Commit

Permalink
resolve pr comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ElijahAhianyo committed Aug 24, 2023
1 parent 1da0a5f commit 3c9b81e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions reflex/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def get_fnm_name() -> Optional[str]:
"""Get the appropriate fnm executable name based on the current platform.
Returns:
str: The fnm executable name for the current platform.
The fnm executable name for the current platform.
"""
platform_os = platform.system()

Expand All @@ -38,7 +38,7 @@ def get_fnm_name() -> Optional[str]:
elif machine.startswith("aarch") or machine.startswith("armv8"):
return "fnm-arm64"
return "fnm-linux"
return
return None


# App names and versions.
Expand All @@ -57,7 +57,7 @@ def get_fnm_name() -> Optional[str]:
)
# The root directory of the reflex library.
ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# The name of the assets' directory.
# The name of the assets directory.
APP_ASSETS_DIR = "assets"
# The template directory used during reflex init.
TEMPLATE_DIR = os.path.join(ROOT_DIR, MODULE_NAME, ".templates")
Expand Down

0 comments on commit 3c9b81e

Please sign in to comment.