mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-04-19 21:53:13 +02:00
7 lines
126 B
Python
7 lines
126 B
Python
import package1 # noqa: F401
|
|
import package2 # noqa: F401
|
|
import sys
|
|
|
|
with open(sys.argv[1], 'w') as f:
|
|
f.write('test')
|