Skip to content

Commit

Permalink
Resolved merge conflicts (pandas-dev#29506)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaharNaveh authored and proost committed Dec 19, 2019
1 parent 523d21c commit 4b7854d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pandas/compat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def set_function_name(f, name, cls):


# https://github.com/pandas-dev/pandas/pull/9123
def is_platform_little_endian():
def is_platform_little_endian() -> bool:
"""
Checking if the running platform is little endian.
Expand All @@ -49,7 +49,7 @@ def is_platform_little_endian():
return sys.byteorder == "little"


def is_platform_windows():
def is_platform_windows() -> bool:
"""
Checking if the running platform is windows.
Expand All @@ -61,7 +61,7 @@ def is_platform_windows():
return sys.platform == "win32" or sys.platform == "cygwin"


def is_platform_linux():
def is_platform_linux() -> bool:
"""
Checking if the running platform is linux.
Expand All @@ -73,7 +73,7 @@ def is_platform_linux():
return sys.platform == "linux2"


def is_platform_mac():
def is_platform_mac() -> bool:
"""
Checking if the running platform is mac.
Expand All @@ -85,7 +85,7 @@ def is_platform_mac():
return sys.platform == "darwin"


def is_platform_32bit():
def is_platform_32bit() -> bool:
"""
Checking if the running platform is 32-bit.
Expand Down

0 comments on commit 4b7854d

Please sign in to comment.