WIP: white space changes to BoltFactory to fix flake8 #105083

Draft
sw-tya wants to merge 3 commits from sw-tya/blender-addons:flake8_bolts into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
First-time contributor

Please find the three files used in the Boltfactory Addon on which I have run the flake8 tool.
I have only cleaned the white space errors.

In order to check they are the same I have used:

with open(F1) as f:
    contents = f.read()
Mainline = ast.dump(ast.parse(contents))

with open(F2) as f:
    contents = f.read()
MyDev = ast.dump(ast.parse(contents))

print(Mainline == MyDev)

There are a couple of other tickets open for this addon that I would be interesting in offering a solution for. My old hardware is limited to Blender 3.6, so I can't test on main.

Thanks.
ps. I'm new to Git, Blender and Python. This is a learning process for me, so started small.

Please find the three files used in the Boltfactory Addon on which I have run the flake8 tool. I have only cleaned the white space errors. In order to check they are the same I have used: ``` with open(F1) as f: contents = f.read() Mainline = ast.dump(ast.parse(contents)) with open(F2) as f: contents = f.read() MyDev = ast.dump(ast.parse(contents)) print(Mainline == MyDev) ``` There are a couple of other tickets open for this addon that I would be interesting in offering a solution for. My old hardware is limited to Blender 3.6, so I can't test on main. Thanks. ps. I'm new to Git, Blender and Python. This is a learning process for me, so started small.
sw-tya added 3 commits 2023-12-24 17:57:29 +01:00
This pull request is marked as a work in progress.

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u flake8_bolts:sw-tya-flake8_bolts
git checkout sw-tya-flake8_bolts
Sign in to join this conversation.
No reviewers
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender-addons#105083
No description provided.