Skip to content

Commit

Permalink
util: fix types for function calls
Browse files Browse the repository at this point in the history
  • Loading branch information
R1kaB3rN committed Sep 1, 2024
1 parent 756a39f commit c8563b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions util.py
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ def set_dxvk_option(
if os.access(dxvk_conf, os.F_OK):
with open(dxvk_conf, encoding='ascii') as dxvk:
conf.read_file(read_dxvk_conf(dxvk))
log.debug(conf.items(section))
log.debug(f'{conf.items(section)}')

# set option
log.info('Addinging DXVK option: ' + str(opt) + ' = ' + str(val))
Expand All @@ -718,12 +718,12 @@ def set_dxvk_option(

def install_eac_runtime() -> None:
"""Install Proton Easyanticheat Runtime"""
install_app(1826330)
install_app('1826330')


def install_battleye_runtime() -> None:
"""Install Proton BattlEye Runtime"""
install_app(1161040)
install_app('1161040')


def install_all_from_tgz(url: str, path: str = os.getcwd()) -> None:
Expand Down

0 comments on commit c8563b8

Please sign in to comment.