Skip to content

Commit

Permalink
Make linter happy by ignoring generated file
Browse files Browse the repository at this point in the history
  • Loading branch information
tledoux committed Aug 7, 2024
1 parent 75d6a67 commit 676a970
Showing 1 changed file with 48 additions and 40 deletions.
88 changes: 48 additions & 40 deletions file_version_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,45 +3,53 @@
# For more details about fixed file info 'ffi' see:
# http://msdn.microsoft.com/en-us/library/ms646997.aspx
#
# Generated from pyi-grab_version dist\GNUDB_GUI.exe
# Generated from pyi-grab_version dist\DONATEMAIL.exe
# Make linters happy
# flake8: noqa
# pylint: disable-all
# type: ignore
VSVersionInfo(
ffi=FixedFileInfo(
# filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4)
# Set not needed items to zero 0.
filevers=(1, 2, 0, 0),
prodvers=(1, 2, 0, 0),
# Contains a bitmask that specifies the valid bits 'flags'r
mask=0x3f,
# Contains a bitmask that specifies the Boolean attributes of the file.
flags=0x0,
# The operating system for which this file was designed.
# 0x4 - NT and there is no need to change it.
OS=0x40004,
# The general type of file.
# 0x1 - the file is an application.
fileType=0x1,
# The function of the file.
# 0x0 - the function is not defined for this fileType
subtype=0x0,
# Creation date and time stamp.
date=(0, 0)
ffi=FixedFileInfo(
# filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4)
# Set not needed items to zero 0.
filevers=(1, 2, 0, 0),
prodvers=(1, 2, 0, 0),
# Contains a bitmask that specifies the valid bits 'flags'r
mask=0x3F,
# Contains a bitmask that specifies the Boolean attributes of the file.
flags=0x0,
# The operating system for which this file was designed.
# 0x4 - NT and there is no need to change it.
OS=0x40004,
# The general type of file.
# 0x1 - the file is an application.
fileType=0x1,
# The function of the file.
# 0x0 - the function is not defined for this fileType
subtype=0x0,
# Creation date and time stamp.
date=(0, 0),
),
kids=[
StringFileInfo(
[
StringTable(
'040904B0',
[StringStruct('FileDescription', 'Exécutable Donatemail'),
StringStruct('FileVersion', '1.2.0.0'),
StringStruct('InternalName', 'donatemail'),
StringStruct('LegalCopyright', 'Copyright © 2024 BnF'),
StringStruct('OriginalFilename', 'Donatemail.exe'),
StringStruct('ProductName', 'Donatemail'),
StringStruct('ProductVersion', '1.2.0.0'),
#StringStruct('Language', 'Language Neutral'),
#StringStruct('Language', 'Français (France)'), => 1036 (1033 for English)
StringStruct('LegalTrademarks', 'BnF')])
]),
VarFileInfo([VarStruct('Translation', [1036, 1200])])
]
)
kids=[
StringFileInfo(
[
StringTable(
"040904B0",
[
StringStruct("FileDescription", "Exécutable Donatemail"),
StringStruct("FileVersion", "1.2.0.0"),
StringStruct("InternalName", "donatemail"),
StringStruct("LegalCopyright", "Copyright © 2024 BnF"),
StringStruct("OriginalFilename", "Donatemail.exe"),
StringStruct("ProductName", "Donatemail"),
StringStruct("ProductVersion", "1.2.0.0"),
# StringStruct('Language', 'Language Neutral'),
# StringStruct('Language', 'Français (France)'), => 1036 (1033 for English)
StringStruct("LegalTrademarks", "BnF"),
],
)
]
),
VarFileInfo([VarStruct("Translation", [1036, 1200])]),
],
)

0 comments on commit 676a970

Please sign in to comment.