mirror of
https://github.com/mrh0wl/Cloudmare.git
synced 2026-04-26 10:25:48 +03:00
[GH-ISSUE #16] Inconsistent use of tabs and spaces in indentation #14
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Cloudmare#14
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @factuminc on GitHub (Apr 26, 2020).
Original GitHub issue: https://github.com/mrh0wl/Cloudmare/issues/16
See the tabs/spacing on lines 57-58:
github.com/MrH0wl/Cloudmare@1e96a3abac/Cloudmare.py (L57)Output:
I:\Cloudmare>python Cloudmare.py --help
File "Cloudmare.py", line 58
ip_takes.extend(CensysIP)
^
TabError: inconsistent use of tabs and spaces in indentation
Obviously, this is an easy fix although I wanted to point out in case anyone else encounters this.
@factuminc commented on GitHub (Apr 26, 2020):
Additional notes: I received this TabError on Windows 10 and I assume that receiving this message could depend on the OS + python config.
@mrh0wl commented on GitHub (Apr 27, 2020):
Hi, sorry for the inconvenience. The error was not your OS's fault, check if the commit
5d7ae230b6fixes it.@factuminc commented on GitHub (May 4, 2020):
Works great. Thanks for the update! I should have mentioned that it worked fine when i fixed the indentation locally.